templates/profile/view_notification.html
changeset 39 2af4b1b731e8
child 47 cbb336da00bd
equal deleted inserted replaced
38:c8c47fcb46f0 39:2af4b1b731e8
       
     1 {% extends 'base.html' %}
       
     2 {% block content %}
       
     3 {% if newest %}
       
     4 <a href="/profile/notf/view/nid={{newest.uniq_key}}">&lt;&lt;newest</a>
       
     5 {% endif %}
       
     6 {% if newer %}
       
     7 <a href="/profile/notf/view/nid={{newer.uniq_key}}">&lt;newer</a>
       
     8 {% endif %}
       
     9 {% if older %}
       
    10 <a href="/profile/notf/view/nid={{older.uniq_key}}">older&gt;</a>
       
    11 {% endif %}
       
    12 {% if oldest %}
       
    13 <a href="/profile/notf/view/nid={{oldest.uniq_key}}">oldest&gt;&gt;</a>
       
    14 {% endif %}
       
    15 <br />
       
    16 
       
    17 <br />
       
    18 sent on {{notification.sent_date|date:"D d M Y"}} at {{notification.sent_date|time:"H:i"}}<br />
       
    19 Sub: {{notification.sub}}<br />
       
    20 <br />
       
    21 {{notification.message|safe}}
       
    22 <br />
       
    23 <a href="/profile/notf/del/nid={{notification.uniq_key}}">Delete</a>
       
    24 <a href="/profile/notf/unr/nid={{notification.uniq_key}}">Keep Unread</a>
       
    25 {% endblock %}