--- a/templates/user/view_notification.html Sat Feb 27 10:48:43 2010 +0530
+++ b/templates/user/view_notification.html Sat Feb 27 14:22:26 2010 +0530
@@ -1,10 +1,10 @@
{% extends 'base.html' %}
{% block content %}
- Subject: {{notification.sub}}<br />
- Sent time: {{notification.sent_date}}<br />
- {% autoescape off %}
- {{notification.message}}
- {% endautoescape %}
+ sent at {{notification.sent_date}}<br />
+ Sub: {{notification.sub}}<br />
+
+ <br />
+ {{notification.message|safe}}
<form action="delete/" method="post"> <input type="submit" value="Delete"> </form>
<form action="unread/" method="post"> <input type="submit" value="Keep Unread"> </form>
{% endblock %}