Implement a /notifications/ view
This commit is contained in:
11
templates/notification/notices.html
Normal file
11
templates/notification/notices.html
Normal 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 %}
|
Reference in New Issue
Block a user