templates/user/browse_notifications.html
author nishanth
Thu, 25 Feb 2010 23:49:38 +0530
changeset 104 d1bdd5d6c1a6
parent 101 e2903a92b5e8
child 106 3c3ea2a3f92a
permissions -rw-r--r--
added the field remarks in request model.

{% 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 %}