templates/user/browse_notifications.html
changeset 123 a6b4234388c8
parent 106 3c3ea2a3f92a
child 184 8ca20bacc78e
equal deleted inserted replaced
122:daee11bdfbaa 123:a6b4234388c8
     2 {% block content %}
     2 {% block content %}
     3     {% if not notifications %}
     3     {% if not notifications %}
     4         You have no notifications.
     4         You have no notifications.
     5     {% else %}
     5     {% else %}
     6         {% for notification in notifications %}
     6         {% for notification in notifications %}
     7             <a href="/user/notifications/nid={{notification.pos}}">
     7             <a href="/user/notifications/nid={{notification.id}}">
     8             {% if not notification.is_read %} <b> {% endif %}
     8             {% if not notification.is_read %} <b> {% endif %}
     9             {{notification.sub}}
     9             {{notification.sub}}
    10             {% if not notification.is_read %} </b> {% endif %}</a><br />
    10             {% if not notification.is_read %} </b> {% endif %}</a><br />
    11         {% endfor %}
    11         {% endfor %}
    12     {% endif %}
    12     {% endif %}