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.

{% extends 'base.html' %}
{% block content %}
    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 %}