templates/profile/browse_notifications.html
changeset 275 c701e68f8d35
child 276 c8c47fcb46f0
equal deleted inserted replaced
274:5cd56898033c 275:c701e68f8d35
       
     1 {% extends 'base.html' %}
       
     2 {% block content %}
       
     3 {% if not notifications %}
       
     4 You have no notifications.
       
     5 {% else %}
       
     6 Notifications for you: <br />
       
     7 {% for notification in notifications %}
       
     8 <a href="/user/notifications/nid={{notification.uniq_key}}">
       
     9 {% if not notification.is_read %} <b> {% endif %}
       
    10 {{notification.sub}}
       
    11 {% if not notification.is_read %} </b> {% endif %}</a><br />
       
    12 {% endfor %}
       
    13 {% endif %}
       
    14 {% endblock %}