templates/user/browse_notifications.html
author nishanth
Thu, 25 Feb 2010 19:39:02 +0530
changeset 101 e2903a92b5e8
child 106 3c3ea2a3f92a
permissions -rw-r--r--
added browse_notifications functionality .
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
101
e2903a92b5e8 added browse_notifications functionality .
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
e2903a92b5e8 added browse_notifications functionality .
nishanth
parents:
diff changeset
     2
{% block content %}
e2903a92b5e8 added browse_notifications functionality .
nishanth
parents:
diff changeset
     3
    {% for notification in notifications %}
e2903a92b5e8 added browse_notifications functionality .
nishanth
parents:
diff changeset
     4
        <a href="/user/notifications/nid={{notification.pos}}">
e2903a92b5e8 added browse_notifications functionality .
nishanth
parents:
diff changeset
     5
        {% if not notification.is_read %} <b> {% endif %}
e2903a92b5e8 added browse_notifications functionality .
nishanth
parents:
diff changeset
     6
        {{notification.sub}}
e2903a92b5e8 added browse_notifications functionality .
nishanth
parents:
diff changeset
     7
        {% if not notification.is_read %} </b> {% endif %}</a><br />
e2903a92b5e8 added browse_notifications functionality .
nishanth
parents:
diff changeset
     8
    {% endfor %}
e2903a92b5e8 added browse_notifications functionality .
nishanth
parents:
diff changeset
     9
{% endblock %}