Unpacking modules

This commit is contained in:
Yusur 2019-10-23 21:09:51 +02:00
parent 1e7787e24e
commit a9006bf1bc
36 changed files with 971 additions and 822 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 %}