templates/user/browse_notifications.html
author nishanth
Sun, 28 Feb 2010 01:15:15 +0530
changeset 133 34187a80d279
parent 123 a6b4234388c8
child 184 8ca20bacc78e
permissions -rw-r--r--
added next and previous capabilities to requests and notifications.

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