templates/user/browse_notifications.html
author nishanth
Fri, 26 Feb 2010 00:29:04 +0530
changeset 106 3c3ea2a3f92a
parent 101 e2903a92b5e8
child 123 a6b4234388c8
permissions -rw-r--r--
now view request shows a better message if role is MT .

{% extends 'base.html' %}
{% block content %}
    {% if not notifications %}
        You have no notifications.
    {% else %}
        {% 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 %}
    {% endif %}
{% endblock %}