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">
|
2024-01-02 11:58:47 +00:00
|
|
|
<table class="data-table center">
|
2023-12-11 15:18:43 +00:00
|
|
|
<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 %}
|