require-necessary-fields #590

Merged
philipp merged 5 commits from require-necessary-fields into staging 2024-06-10 20:59:40 +02:00
Showing only changes of commit 957c474389 - Show all commits

View File

@ -242,7 +242,7 @@
</div>
</div>
{% endmacro show_old %}
{% macro home(log) %}
{% macro home(log, allowed_to_close=false) %}
<form class="grid grid-cols-1 gap-3"
action="/log/{{ log.id }}"
method="post">
@ -279,4 +279,8 @@
</details>
<input class="btn btn-primary" type="submit" value="Ausfahrt beenden" />
</form>
<a href="/log/{{ log.id }}/delete"
class="btn btn-alert w-full absolute bottom-0 left-0"
style="border-radius: 0"
onclick="return confirm('Willst du diesen Eintrag wirklich löschen? Die Daten gehen verloren');">Löschen</a>
{% endmacro home %}