django-flash
django-flash copied to clipboard
Django-Flash is a simple Django extension which provides support for Rails-like flash messages.
The company I work for keeps hitting 500 errors on pages due to the flash message's cookie being tampered with. I believe when the cookie has been tampered with, then...
removed unused urlparse import
changes: TEMPLATE_LOADERS = ( 'django.template.loaders.filesystem.load_template_source', ) to: django.template.loaders.filesystem.Loader
The latest official version is 1.6.2. Regards!
I'm having an odd issue with a simple redirect scenario using the django builtin redirect shortcut. I have a flash message set up... `request.flash['message'] = "Test."` Then on the next...