templates/user/view_notification.html
changeset 133 34187a80d279
parent 129 e747da8bc110
child 134 3a49a7e23442
equal deleted inserted replaced
132:ca88bf4ad362 133:34187a80d279
     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}}">&lt;&lt;newest</a>
       
     5     {% endif %}
       
     6     {% if newer %}
       
     7         <a href="/user/notifications/nid={{newer.id}}">&lt;newer</a>
       
     8     {% endif %}
       
     9     {% if older %}
       
    10         <a href="/user/notifications/nid={{older.id}}">older&gt;</a>
       
    11     {% endif %}
       
    12     {% if oldest %}
       
    13         <a href="/user/notifications/nid={{oldest.id}}">oldest&gt;&gt;</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 %}