summaryrefslogtreecommitdiff
path: root/templates/profile/browse_notifications.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/profile/browse_notifications.html')
-rw-r--r--templates/profile/browse_notifications.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/profile/browse_notifications.html b/templates/profile/browse_notifications.html
new file mode 100644
index 0000000..8f53278
--- /dev/null
+++ b/templates/profile/browse_notifications.html
@@ -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 %}