templates/profile/browse_notifications.html
changeset 304 37adf6656f48
parent 283 c8bcc41221cb
equal deleted inserted replaced
303:41fcf2273003 304:37adf6656f48
     1 {% extends 'base.html' %}
     1 {% extends 'base.html' %}
     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 Notifications for you: <br />
     6 Notifications: <br />
     7 {% for notification in notifications %}
     7 {% for notification in notifications %}
     8 <a href="/profile/notf/view/nid={{notification.uniq_key}}">
     8 <a href="/profile/notf/view/nid={{notification.uniq_key}}">
     9 {% if not notification.is_read %} <b> {% endif %}
     9 {% if not notification.is_read %} <b> {% endif %}
    10 {{notification.subject}}
    10 {{notification.subject}}
    11 {% if not notification.is_read %} </b> {% endif %}</a><br />
    11 {% if not notification.is_read %} </b> {% endif %}</a><br />