templates/profile/browse_notifications.html
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 13:37:38 +0530
changeset 291 5daf523e20b4
parent 283 c8bcc41221cb
child 304 37adf6656f48
permissions -rw-r--r--
added styles to base.css

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