Files
caminus/templates/notification/notices.html
2012-06-08 14:54:29 -04:00

12 lines
232 B
HTML

{% extends "base_simple.html" %}
{% block sectiontitle %}Notifications{%endblock%}
{% block content %}
<ul>
{% for notice in notices %}
<li class="notice-unseen-{{notice.unseen}}">{{notice}}</li>
{% endfor %}
</ul>
{% endblock %}