From ecb347c2045f8c7c8b11d51f1d23b986e577db50 Mon Sep 17 00:00:00 2001 From: philipp Date: Mon, 19 Aug 2024 14:06:00 +0200 Subject: [PATCH] nag, if a long logentry is entered w/o trip_type; Fixes #448 --- templates/admin/schnupper/index.html.tera | 3 ++- templates/includes/forms/log.html.tera | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/templates/admin/schnupper/index.html.tera b/templates/admin/schnupper/index.html.tera index 755985d..9821a5a 100644 --- a/templates/admin/schnupper/index.html.tera +++ b/templates/admin/schnupper/index.html.tera @@ -13,7 +13,8 @@
  • {{ user.name }} ({{ user.mail }} - {%- if user.notes %} | {{ user.notes }}{% endif -%} + {%- if user.notes %} | {{ user.notes }} + {% endif -%} ) + method="post" + onsubmit="var distance = parseFloat(document.getElementById('distance_in_km{{ log.id }}js').value); var logtype = document.getElementById('logtype{{ log.id }}js').value; if (distance > 50 && (!logtype || logtype === 'Normal')) { return confirm('Die eingegebene Distanz beträgt mehr als 50 km und es wurde kein Typ (Wanderfahrt, Regatta, ...) ausgewählt. Wenn es eine Wanderfahrt war, stell dies bitte unter \'Details ändern\' ein. Möchtest du das NICHT tun und den Eintrag OHNE Typ speichern?'); } return true;"> {{ macros::input(label='Ankunftszeit', name='arrival', type='datetime-local', required=true, class="change-id-js rounded-md current-date-time") }}
    -- 2.45.2