Provides a very simple tag to load settings variables from Django templates. If the variable doesn't exists, an empty string is returned.
To install / update the module:
pip install django-custom-settings-templatetag -U
In your Django template, do the following :
{% load custom_settings %}
{% settings_value "CUSTOM_VAR_IN_SETTINGS" as CUSTOM_VAR %}
{% if CUSTOM_VAR %}
var={{ CUSTOM_VAR }}
{% endif %}