Adding notifications

This commit is contained in:
Yusur 2019-05-05 10:09:27 +02:00
parent 0f0ef9c08b
commit 6906455981
3 changed files with 79 additions and 4 deletions

View file

@ -0,0 +1,10 @@
{% extends "base.html" %}
{% block body %}
<h2>Notifications</h2>
<ul>
{% for notification in notification_list %}
<li>{% include "includes/notification.html" %}</li>
{% endfor %}
</ul>
{% include "includes/pagination.html" %}
{% endblock %}