Closed tsyesika closed 10 years ago
Currently we're pushing things into session cookies which works but I've recently discovered https://docs.djangoproject.com/en/1.5/ref/contrib/messages/ which seems to do exactly what we want, I think we should switch to it.
We're not using session cookies at all (other than storing the session ID) - all session data is stored on the server.
But yes, we should use the messages middleware
Currently we're pushing things into session cookies which works but I've recently discovered https://docs.djangoproject.com/en/1.5/ref/contrib/messages/ which seems to do exactly what we want, I think we should switch to it.