templates/user/view_notification.html
author nishanth
Fri, 26 Feb 2010 01:43:24 +0530
changeset 109 a381c91a1618
parent 103 3a4c8fccb9f3
child 129 e747da8bc110
permissions -rw-r--r--
updated browse_tasks page. now it does not display deleted or unpublished tasks.

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