diff options
Diffstat (limited to 'templates/user/browse_notifications.html')
-rw-r--r-- | templates/user/browse_notifications.html | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/templates/user/browse_notifications.html b/templates/user/browse_notifications.html deleted file mode 100644 index 210fad2..0000000 --- a/templates/user/browse_notifications.html +++ /dev/null @@ -1,14 +0,0 @@ -{% extends 'base.html' %} -{% block content %} - {% if not notifications %} - You have no notifications.<sup><a href="/about/notification/" target="_blank">learn more</a></sup><br /> - {% else %} - Notifications for you: <sup><a href="/about/notification/" target="_blank">learn more</a></sup><br /> - {% for notification in notifications %} - <a href="/user/notifications/nid={{notification.id}}"> - {% if not notification.is_read %} <b> {% endif %} - {{notification.sub}} - {% if not notification.is_read %} </b> {% endif %}</a><br /> - {% endfor %} - {% endif %} -{% endblock %} |