moviewyrm/bookwyrm/context_processors.py

9 lines
249 B
Python
Raw Normal View History

2020-12-11 20:31:02 +00:00
''' customize the info available in context for rendering templates '''
from bookwyrm import models
def site_settings(request):
''' include the custom info about the site '''
return {
'site': models.SiteSettings.objects.get()
}