templates/profile/browse_notifications.html
changeset 275 c701e68f8d35
child 276 c8c47fcb46f0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/profile/browse_notifications.html	Fri Jan 07 12:21:43 2011 +0530
@@ -0,0 +1,14 @@
+{% 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 %}