diff options
Diffstat (limited to 'templates/user/view_notification.html')
-rw-r--r-- | templates/user/view_notification.html | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/templates/user/view_notification.html b/templates/user/view_notification.html deleted file mode 100644 index 4738238..0000000 --- a/templates/user/view_notification.html +++ /dev/null @@ -1,24 +0,0 @@ -{% extends 'base.html' %} -{% block content %} - {% if newest %} - <a href="/user/notifications/nid={{newest.id}}"><<newest</a> - {% endif %} - {% if newer %} - <a href="/user/notifications/nid={{newer.id}}"><newer</a> - {% endif %} - {% if older %} - <a href="/user/notifications/nid={{older.id}}">older></a> - {% endif %} - {% if oldest %} - <a href="/user/notifications/nid={{oldest.id}}">oldest>></a> - {% endif %} - <br /> - - <form action="delete/" method="post"> <input type="submit" value="Delete"> </form> - <form action="unread/" method="post"> <input type="submit" value="Keep Unread"> </form> - <br /> - sent on {{notification.sent_date|date:"D d M Y"}} at {{notification.sent_date|time:"H:i"}}<br /> - Sub: {{notification.sub}}<br /> - <br /> - {{notification.message|safe}} -{% endblock %} |