mirror of
https://github.com/retspen/webvirtcloud
synced 2025-07-31 12:41:08 +00:00
Some improvements for appsettings app
This commit is contained in:
parent
7eee811e65
commit
bb8f95be14
5 changed files with 43 additions and 3 deletions
13
appsettings/context_processors.py
Normal file
13
appsettings/context_processors.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
from .settings import app_settings as settings
|
||||
|
||||
|
||||
def app_settings(request):
|
||||
"""
|
||||
Simple context processor that puts the config into every\
|
||||
RequestContext. Just make sure you have a setting like this::
|
||||
TEMPLATE_CONTEXT_PROCESSORS = (
|
||||
# ...
|
||||
'appsettings.context_processors.app_settings',
|
||||
)
|
||||
"""
|
||||
return {"app_settings": settings}
|
Loading…
Add table
Add a link
Reference in a new issue