templates/user/view_notification.html
changeset 129 e747da8bc110
parent 103 3a4c8fccb9f3
child 133 34187a80d279
equal deleted inserted replaced
128:f34e3a3e1439 129:e747da8bc110
     1 {% extends 'base.html' %}
     1 {% extends 'base.html' %}
     2 {% block content %}
     2 {% block content %}
     3     Subject: {{notification.sub}}<br />
     3     sent at {{notification.sent_date}}<br />
     4     Sent time: {{notification.sent_date}}<br />
     4     Sub: {{notification.sub}}<br />
     5     {% autoescape off %}
     5     
     6         {{notification.message}}
     6     <br />
     7     {% endautoescape %}
     7         {{notification.message|safe}}
     8     <form action="delete/" method="post"> <input type="submit" value="Delete"> </form>
     8     <form action="delete/" method="post"> <input type="submit" value="Delete"> </form>
     9     <form action="unread/" method="post"> <input type="submit" value="Keep Unread"> </form>
     9     <form action="unread/" method="post"> <input type="submit" value="Keep Unread"> </form>
    10 {% endblock %}
    10 {% endblock %}