add delete trip button in edit window; Fixes #449 #586

Merged
philipp merged 2 commits from delte-trip-btn into main 2024-06-10 19:08:24 +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 %}