pytask/templates/profile/browse_notifications.html
changeset 69 c6bca38c1cbf
parent 66 37adf6656f48
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pytask/templates/profile/browse_notifications.html	Sat Jan 08 11:20:57 2011 +0530
@@ -0,0 +1,14 @@
+{% 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 %}