templates/profile/browse_notifications.html
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 12:21:43 +0530
changeset 275 c701e68f8d35
child 276 c8c47fcb46f0
permissions -rw-r--r--
fixed a typo and browse notifications works fine

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