I use the ‘messages’ interface to pass messages to user like this:
request.user.message_set.create(message=message)
I would like to include html in my {{ message }}
variable and render it without escaping the markup in the template.
I use the ‘messages’ interface to pass messages to user like this:
request.user.message_set.create(message=message)
I would like to include html in my {{ message }}
variable and render it without escaping the markup in the template.