Am 25.08.2011 06:19, schrieb h3:
But this would have side effects on the non-admin templates too.. so it's not ideal.Maybe something like this: TEMPLATE_STRING_IF_INVALID = {'default: '!! Invalid var !!', 'django.contrib.admin': ''}
I do a hack in my admin.py: ----------------------------------------------------------------------------- # some django admin stuff is broken if TEMPLATE_STRING_IF_INVALID != "" # http://code.djangoproject.com/ticket/3579 if settings.TEMPLATE_STRING_IF_INVALID != "": # Patch the render_to_response function ;) from django.contrib.auth import admin as auth_admin from django.contrib.admin import options def patched_render_to_response(*args, **kwargs): old = settings.TEMPLATE_STRING_IF_INVALID settings.TEMPLATE_STRING_IF_INVALID = "" result = render_to_response(*args, **kwargs) settings.TEMPLATE_STRING_IF_INVALID = old return result options.render_to_response = patched_render_to_response auth_admin.render_to_response = patched_render_to_response ----------------------------------------------------------------------------- So you can use TEMPLATE_STRING_IF_INVALID, but it's excluded from django admin ;) -- Mfg. Jens Diemer ---- http://www.jensdiemer.de -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.
