templates/profile/browse_notifications.html
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 12:53:57 +0530
changeset 283 c8bcc41221cb
parent 276 c8c47fcb46f0
child 304 37adf6656f48
permissions -rw-r--r--
fixed a typo

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