2023-07-30 14:13:49 +02:00
|
|
|
{% import "includes/macros" as macros %}
|
|
|
|
{% import "includes/forms/log" as log %}
|
|
|
|
|
|
|
|
{% extends "base" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2023-07-30 14:33:50 +02:00
|
|
|
<div class="max-w-screen-lg w-full">
|
|
|
|
<h1 class="h1">Logbuch</h1>
|
2023-09-27 15:36:07 +02:00
|
|
|
|
|
|
|
<div class="mt-3">
|
|
|
|
<div class="bg-gray-200 p-3 mt-4 rounded-t-md">
|
|
|
|
<label for="name" class="sr-only">Suche</label>
|
|
|
|
<input type="search" name="name" id="filter-js" class="w-full relative block rounded-md border-0 py-1.5 px-2 text-gray-900 ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:z-10 focus:ring-2 focus:ring-inset focus:ring-primary-600 sm:text-sm sm:leading-6 mb-2 md:mb-0" placeholder="Suchen nach...">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="filter-result-js" class="bg-gray-200 text-primary-950 pb-3 px-3 text-right"></div>
|
|
|
|
{% for log in logs %}
|
|
|
|
{{ log::show_old(log=log, state="completed", only_ones=false, index=loop.index) }}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2023-07-30 14:33:50 +02:00
|
|
|
</div>
|
2023-07-30 14:13:49 +02:00
|
|
|
|
|
|
|
{% endblock content%}
|