templates/user/view_notification.html
changeset 103 3a4c8fccb9f3
child 129 e747da8bc110
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/user/view_notification.html	Thu Feb 25 20:13:59 2010 +0530
@@ -0,0 +1,10 @@
+{% extends 'base.html' %}
+{% block content %}
+    Subject: {{notification.sub}}<br />
+    Sent time: {{notification.sent_date}}<br />
+    {% autoescape off %}
+        {{notification.message}}
+    {% endautoescape %}
+    <form action="delete/" method="post"> <input type="submit" value="Delete"> </form>
+    <form action="unread/" method="post"> <input type="submit" value="Keep Unread"> </form>
+{% endblock %}