2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 07:11:52 +00:00

actually needed it seems.

This commit is contained in:
Philip Sargent 2021-04-13 02:29:24 +01:00
parent 0820d7c0dc
commit 2467065ac3

View File

@ -7,7 +7,11 @@ in the processing of Django templates
This seems to mean that every page produced has bundled in its context the complete 'settings' and This seems to mean that every page produced has bundled in its context the complete 'settings' and
the expedition class object, so all templates can doe queries on Expedition. the expedition class object, so all templates can doe queries on Expedition.
https://betterprogramming.pub/django-quick-tips-context-processors-da74f887f1fc https://betterprogramming.pub/django-quick-tips-context-processors-da74f887f1fc
If it is commented out, the logbookentry page goes crazy and the screws up all the site_media resultions for CSS file s!
Seems to be necessary to make {{settings.MEDIA_URL}} work. Which is obvious in retrospect.
''' '''
def troggle_context(request): def troggle_context(request):
return { 'settings':settings}
return { 'settings':settings, 'Expedition':Expedition } return { 'settings':settings, 'Expedition':Expedition }