coriplus/app/templates/notifications.html

11 lines
264 B
HTML
Raw Permalink Normal View History

2019-05-05 10:09:27 +02:00
{% 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 %}