Implement a /notifications/ view

This commit is contained in:
Trever Fischer
2012-06-08 14:54:29 -04:00
parent cad9da3446
commit 8b23d42671

View File

@@ -0,0 +1,11 @@
{% 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 %}