templates/user/browse_notifications.html
changeset 236 39f83b4cf557
parent 235 e338eaeccad7
equal deleted inserted replaced
235:e338eaeccad7 236:39f83b4cf557
     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 %}