{% 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_old(log=log, state="completed", only_ones=false) }}
			<hr/>
		{% endfor %}
	</div>

{% endblock content%}