templates/profile/browse_notifications.html
author Nishanth Amuluru <nishanth@fossee.in>
Sat, 08 Jan 2011 01:52:55 +0530
changeset 304 37adf6656f48
parent 283 c8bcc41221cb
permissions -rw-r--r--
Added full_name and prettified the page

{% extends 'base.html' %}
{% block content %}
{% if not notifications %}
You have no notifications.
{% else %}
Notifications: <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 %}