templates/profile/browse_notifications.html
author Nishanth Amuluru <nishanth@fossee.in>
Sat, 08 Jan 2011 01:46:33 +0530
changeset 302 4ee9a0f32f76
parent 283 c8bcc41221cb
child 304 37adf6656f48
permissions -rw-r--r--
Added edit_profile link

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