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 .

{% extends 'base.html' %}
{% block content %}
    {% for notification in notifications %}
        <a href="/user/notifications/nid={{notification.pos}}">
        {% if not notification.is_read %} <b> {% endif %}
        {{notification.sub}}
        {% if not notification.is_read %} </b> {% endif %}</a><br />
    {% endfor %}
{% endblock %}