mirror of
https://github.com/jazzband/django-constance.git
synced 2026-03-16 22:40:24 +00:00
15 lines
343 B
Python
15 lines
343 B
Python
import constance
|
|
|
|
|
|
def config(request):
|
|
"""
|
|
Simple context processor that puts the config into every
|
|
RequestContext. Just make sure you have a setting like this:
|
|
|
|
TEMPLATE_CONTEXT_PROCESSORS = (
|
|
# ...
|
|
'constance.context_processors.config',
|
|
)
|
|
|
|
"""
|
|
return {"config": constance.config}
|