templates/user/view_notification.html
author nishanth
Fri, 26 Feb 2010 18:34:30 +0530
changeset 123 a6b4234388c8
parent 103 3a4c8fccb9f3
child 129 e747da8bc110
permissions -rw-r--r--
now notification depends on id and not pos.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
103
3a4c8fccb9f3 added the functionality to view each notification
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
3a4c8fccb9f3 added the functionality to view each notification
nishanth
parents:
diff changeset
     2
{% block content %}
3a4c8fccb9f3 added the functionality to view each notification
nishanth
parents:
diff changeset
     3
    Subject: {{notification.sub}}<br />
3a4c8fccb9f3 added the functionality to view each notification
nishanth
parents:
diff changeset
     4
    Sent time: {{notification.sent_date}}<br />
3a4c8fccb9f3 added the functionality to view each notification
nishanth
parents:
diff changeset
     5
    {% autoescape off %}
3a4c8fccb9f3 added the functionality to view each notification
nishanth
parents:
diff changeset
     6
        {{notification.message}}
3a4c8fccb9f3 added the functionality to view each notification
nishanth
parents:
diff changeset
     7
    {% endautoescape %}
3a4c8fccb9f3 added the functionality to view each notification
nishanth
parents:
diff changeset
     8
    <form action="delete/" method="post"> <input type="submit" value="Delete"> </form>
3a4c8fccb9f3 added the functionality to view each notification
nishanth
parents:
diff changeset
     9
    <form action="unread/" method="post"> <input type="submit" value="Keep Unread"> </form>
3a4c8fccb9f3 added the functionality to view each notification
nishanth
parents:
diff changeset
    10
{% endblock %}