2020-12-11 15:31:02 -05: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 {
|
2020-12-12 17:33:51 -05:00
|
|
|
'site': models.SiteSettings.objects.get()
|
2020-12-11 15:31:02 -05:00
|
|
|
}
|