{% extends 'base.html' %}
{% block content %}
{% if newest %}
<a href="/profile/notf/view/nid={{newest.uniq_key}}"><<newest</a>
{% endif %}
{% if newer %}
<a href="/profile/notf/view/nid={{newer.uniq_key}}"><newer</a>
{% endif %}
{% if older %}
<a href="/profile/notf/view/nid={{older.uniq_key}}">older></a>
{% endif %}
{% if oldest %}
<a href="/profile/notf/view/nid={{oldest.uniq_key}}">oldest>></a>
{% endif %}
<br />
<br />
sent on {{notification.sent_date|date:"D d M Y"}} at {{notification.sent_date|time:"H:i"}}<br />
Sub: {{notification.subject}}<br />
<br />
{{notification.message|safe}}
<br />
<a href="/profile/notf/del/nid={{notification.uniq_key}}">Delete</a>
<a href="/profile/notf/unr/nid={{notification.uniq_key}}">Keep Unread</a>
{% endblock %}