templates/user/view_notification.html
author nishanth
Sat, 27 Feb 2010 14:22:26 +0530
changeset 129 e747da8bc110
parent 103 3a4c8fccb9f3
child 133 34187a80d279
permissions -rw-r--r--
notifications work for approving and rejecting credits.
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 %}
129
e747da8bc110 notifications work for approving and rejecting credits.
nishanth
parents: 103
diff changeset
     3
    sent at {{notification.sent_date}}<br />
e747da8bc110 notifications work for approving and rejecting credits.
nishanth
parents: 103
diff changeset
     4
    Sub: {{notification.sub}}<br />
e747da8bc110 notifications work for approving and rejecting credits.
nishanth
parents: 103
diff changeset
     5
    
e747da8bc110 notifications work for approving and rejecting credits.
nishanth
parents: 103
diff changeset
     6
    <br />
e747da8bc110 notifications work for approving and rejecting credits.
nishanth
parents: 103
diff changeset
     7
        {{notification.message|safe}}
103
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 %}