equal
deleted
inserted
replaced
1 {% extends 'base.html' %} |
1 {% extends 'base.html' %} |
2 {% block content %} |
2 {% block content %} |
|
3 {% if newest %} |
|
4 <a href="/user/notifications/nid={{newest.id}}"><<newest</a> |
|
5 {% endif %} |
|
6 {% if newer %} |
|
7 <a href="/user/notifications/nid={{newer.id}}"><newer</a> |
|
8 {% endif %} |
|
9 {% if older %} |
|
10 <a href="/user/notifications/nid={{older.id}}">older></a> |
|
11 {% endif %} |
|
12 {% if oldest %} |
|
13 <a href="/user/notifications/nid={{oldest.id}}">oldest>></a> |
|
14 {% endif %} |
|
15 <br /> |
|
16 |
|
17 <form action="delete/" method="post"> <input type="submit" value="Delete"> </form> |
|
18 <form action="unread/" method="post"> <input type="submit" value="Keep Unread"> </form> |
|
19 <br /> |
3 sent at {{notification.sent_date}}<br /> |
20 sent at {{notification.sent_date}}<br /> |
4 Sub: {{notification.sub}}<br /> |
21 Sub: {{notification.sub}}<br /> |
5 |
|
6 <br /> |
22 <br /> |
7 {{notification.message|safe}} |
23 {{notification.message|safe}} |
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> |
|
10 {% endblock %} |
24 {% endblock %} |