Lo suelo usar durante el principio de los proyectos.
from django.conf import settings as django_settings
from django.core.exceptions import ImproperlyConfigured
def settings(request):
"""
Adds the settings specified in settings.TEMPLATE_VISIBLE_SETTINGS to
the request context.
"""
new_settings = {}
for attr in django_settings.TEMPLATE_VISIBLE_SETTINGS:
try:
new_settings[attr] = getattr(django_settings, attr)
except AttributeError:
m = "TEMPLATE_VISIBLE_SETTINGS: '{0}' does not exist".format(attr)
raise ImproperlyConfigured(m)
return new_settings
Se usa así:
TEMPLATE_CONTEXT_PROCESSORS = (
'django.contrib.auth.context_processors.auth',
...
'web.context_processors.settings',
)
DEBUG = True
CLIENT_SLOGAN = 'Esto es un ejemplo'
TEMPLATE_VISIBLE_SETTINGS = (
'DEBUG',
'CLIENT_SLOGAN'
)
¿Qué te parece? ¿Piensas que olividé algo? ¿Poco claro? Deja abajo tus comentarios.
comentarios proporcionados por Disqus