This Django app allows you to export certain settings to your templates.
Project description
Often it is needed to make some of your Django project’s settings accessible from within templates. This app provides a simple mechanism for doing just that.
It tries to make settings management easier by:
Requiring you to be explicit about what settings should be exported to templates.
Failing loudly if an undefined or unexported setting is accessed.
Installation
$ pip install django-settings-export
Add 'django_settings_export.export_settings' to TEMPLATE_CONTEXT_PROCESSORS in your settings.py:
TEMPLATE_CONTEXT_PROCESSORS = [
# [...]
'django_settings_export.export_settings',
]
Usage
All settings that should be made accessible from templates need to be explicitly listed in settings.SETTINGS_EXPORT:
# settings.py
DEBUG = True
GA_ID = 'UA-00000-0'
SETTINGS_EXPORT = [
'DEBUG',
'GA-ID',
]
Now you can access those exported settings from your templates via settings.<KEY>:
{% if not settings.DEBUG %}
<script>ga('create', '{{ settings.GA_ID }}', 'auto');</script>
{% endif %}
Exceptions:
Listing an undefined setting key in SETTINGS_EXPORT results in an UndefinedSettingError.
Accessing a unexported setting key on the settings object in a template results in an UnexportedSettingError.
Development
Run tests:
$ cd demo
$ python manage.py test
Licence
BSD. See LICENCE for more details.
Contact
Jakub Roztočil
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-settings-export-1.0.tar.gz
.
File metadata
- Download URL: django-settings-export-1.0.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4555a070e6fe11ec1d445c23ef60100333016319d0f9bdf772e48fc807361632 |
|
MD5 | 03438789c2daf3399a01d8e5556baa1f |
|
BLAKE2b-256 | 5cd4b405da718201918180f1baad60d381e25c50490df85f23add1f8147a552d |