bookwyrm/bookwyrm/context_processors.py
2021-03-08 08:49:10 -08:00

8 lines
271 B
Python

""" customize the info available in context for rendering templates """
from bookwyrm import models
def site_settings(request): # pylint: disable=unused-argument
""" include the custom info about the site """
return {"site": models.SiteSettings.objects.get()}