templates/user/browse_notifications.html
changeset 101 e2903a92b5e8
child 106 3c3ea2a3f92a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/user/browse_notifications.html	Thu Feb 25 19:39:02 2010 +0530
@@ -0,0 +1,9 @@
+{% extends 'base.html' %}
+{% block content %}
+    {% for notification in notifications %}
+        <a href="/user/notifications/nid={{notification.pos}}">
+        {% if not notification.is_read %} <b> {% endif %}
+        {{notification.sub}}
+        {% if not notification.is_read %} </b> {% endif %}</a><br />
+    {% endfor %}
+{% endblock %}