nekrochan/templates/staff/logs.html

30 řádky
726 B
HTML
Surový Normální zobrazení Historie

2023-12-11 15:18:43 +00:00
{% import "../macros/pagination.html" as pagination %}
{% import "../macros/staff-nav.html" as staff_nav %}
{% extends "base.html" %}
{% block title %}Záznamy{% endblock %}
{% block content %}
<h1 class="title">Záznamy</h1>
2023-12-25 13:53:44 +00:00
{% call staff_nav::staff_nav() %}
2023-12-11 15:18:43 +00:00
<hr>
<h2>Záznamy</h2>
<div class="table-wrap">
<table class="data-table">
<tr>
<th>Zpráva</th>
<th>Datum</th>
</tr>
{% for record in records %}
<tr>
<td>{{ record.message }}</td>
<td>{{ record.created|czech_datetime }}</td>
</tr>
{% endfor %}
</table>
</div>
<hr>
{% call pagination::pagination("/staff/logs", pages, page) %}
{% endblock %}