This module provides a session-based flash storage backend.
Since this backend relies on the user’s session, you need to include the SessionMiddleware class to the MIDDLEWARE_CLASSES section of your project’s settings.py file:
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'djangoflash.middleware.FlashMiddleware',
)
See also
Bases: object
Session-based flash storage backend.
Returns FlashScope object stored in the session.
Stores the given FlashScope object in the session.
See also