templates/user/view_notification.html
author nishanth
Sat, 27 Feb 2010 19:21:15 +0530
changeset 132 ca88bf4ad362
parent 129 e747da8bc110
child 133 34187a80d279
permissions -rw-r--r--
implemented notification functionality for AD MG DV.

{% 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 %}