add logbook history

This commit is contained in:
2023-07-30 14:13:49 +02:00
parent c6d19d276c
commit 2e80f7bc38
4 changed files with 38 additions and 8 deletions

View File

@ -0,0 +1,16 @@
{% import "includes/macros" as macros %}
{% import "includes/forms/log" as log %}
{% extends "base" %}
{% block content %}
<div class="max-w-screen-lg w-full">
<h1 class="h1">Logbuch</h1>
{% for log in logs %}
{{ log::show(log=log, state="completed", only_ones=false) }}
<hr />
{% endfor %}
</div>
{% endblock content%}