create a seperate table for each notification

This commit is contained in:
Andreas Zweili 2020-01-02 11:41:51 +01:00
parent 02e3dccc6c
commit 62b8af148f
1 changed files with 2 additions and 2 deletions

View File

@ -54,8 +54,8 @@
<div class="card">
<div class="content">
<div class="header">Notifications</div>
<table class="ui celled table">
{% for notification in notifications %}
<table class="ui celled table">
<tr>
<td><b>Name:</b></td>
<td>{{ notification.notification }}</td>
@ -73,8 +73,8 @@
<td>{{ notification.notification.notification_type }}</td>
</tr>
{% endfor %}
</table>
{% endfor %}
</div>
</div>
{% endif %}