I have a Django app which when presented with some user error (i.e URL does not exist or no permissions), it will do messages.add_message. The message contains a link to an explanation of the error at /error/<id>. If I want to re-use the error id and message, how do I do it? I was thinking something like this:
errors = {1 : "Error message for error id 1", 2 : "Error message for error id 2"}
Where could I store such a dictionary so that I can access it in all of my views?
messages.add_message, which is then shown in the template. – q3d Aug 22 '12 at 10:49