2023-07-23 12:17:57 +02:00
|
|
|
{% import "includes/macros" as macros %}
|
2023-07-26 12:56:19 +02:00
|
|
|
{% import "includes/forms/log" as log %}
|
2023-07-23 12:17:57 +02:00
|
|
|
|
|
|
|
{% extends "base" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2023-07-30 14:33:50 +02:00
|
|
|
{% if flash %}
|
|
|
|
{{ macros::alert(message=flash.1, type=flash.0, class="sm:col-span-2 lg:col-span-3") }}
|
|
|
|
{% endif %}
|
2023-07-27 15:24:29 +02:00
|
|
|
|
2023-07-30 14:33:50 +02:00
|
|
|
<div class="max-w-screen-lg w-full">
|
|
|
|
<h1 class="h1">Logbuch</h1>
|
|
|
|
<h2>Neue Ausfahrt starten</h2>
|
|
|
|
{{ log::new(only_ones=loggedin_user.is_cox==false, allow_any_shipmaster=loggedin_user.is_cox, shipmaster=loggedin_user.id) }}
|
2023-07-23 12:17:57 +02:00
|
|
|
|
2023-07-30 14:33:50 +02:00
|
|
|
<h2 style="font-size: 100px">Am Wasser</h2>
|
|
|
|
{% for log in on_water %}
|
|
|
|
{% if log.shipmaster == loggedin_user.id %}
|
|
|
|
{{ log::show(log=log, state="on_water", allowed_to_close=true, only_ones=loggedin_user.is_cox==false) }}
|
|
|
|
{% else %}
|
|
|
|
{{ log::show(log=log, state="on_water", only_ones=true) }}
|
|
|
|
{% endif %}
|
|
|
|
<hr/>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2023-07-23 12:17:57 +02:00
|
|
|
|
|
|
|
{% endblock content%}
|