templates/profile/browse_notifications.html
changeset 45 c8bcc41221cb
parent 38 c8c47fcb46f0
child 66 37adf6656f48
equal deleted inserted replaced
44:69d1c4b99503 45:c8bcc41221cb
     5 {% else %}
     5 {% else %}
     6 Notifications for you: <br />
     6 Notifications for you: <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.sub}}
    10 {{notification.subject}}
    11 {% if not notification.is_read %} </b> {% endif %}</a><br />
    11 {% if not notification.is_read %} </b> {% endif %}</a><br />
    12 {% endfor %}
    12 {% endfor %}
    13 {% endif %}
    13 {% endif %}
    14 {% endblock %}
    14 {% endblock %}