[Django]-Non-destructively handling Django user messages

3👍

I know it sounds like a strange approach, but you could copy into your own list

request.user.message_set.all()

before instantiating RequestContext, and later put them back in..

Leave a comment