kumify/dreams/templates/dreams/notification_list.html
2021-01-01 17:49:39 +01:00

28 lines
1.3 KiB
HTML

{% extends "frontend/base.html" %}
{% block "content" %}
<div class="card shadow mb-4">
<div class="card-header py-3">
<h6 class="m-0 font-weight-bold text-primary">Your Daily Notifications</h6>
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
<thead>
<tr>
<th>Time</th>
</tr>
</thead>
<tbody>
{% for notification in object_list %}
<tr onclick="window.location.href='{% url "mood:notification_edit" notification.id %}'">
<td>{{ notification.time }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
{% endblock %}