Allow users to list their notifications

This is in very early stage, but at least it works.
This commit is contained in:
2018-07-09 08:32:27 +02:00
parent f1fab33c8d
commit 379a5b1bb0
3 changed files with 116 additions and 9 deletions

View File

@@ -0,0 +1,7 @@
{% extends 'base.html' %}
{% block content %}
{% for notif in notifs %}
{{ notif.message }}<br>
{% endfor %}
{% endblock content %}