templates/user/browse_notifications.html
branchbuildout
changeset 227 3c8f3b0e5b00
parent 214 679c7e237052
child 228 81994e525e69
equal deleted inserted replaced
214:679c7e237052 227:3c8f3b0e5b00
     1 {% extends 'base.html' %}
       
     2 {% block content %}
       
     3     {% if not notifications %}
       
     4         You have no notifications.<sup><a href="/about/notification/" target="_blank">learn more</a></sup><br />
       
     5     {% else %}
       
     6     Notifications for you: <sup><a href="/about/notification/" target="_blank">learn more</a></sup><br />
       
     7         {% for notification in notifications %}
       
     8             <a href="/user/notifications/nid={{notification.id}}">
       
     9             {% if not notification.is_read %} <b> {% endif %}
       
    10             {{notification.sub}}
       
    11             {% if not notification.is_read %} </b> {% endif %}</a><br />
       
    12         {% endfor %}
       
    13     {% endif %}
       
    14 {% endblock %}