From 762cda8b20a1816f4fd2fe2501607380ad961235 Mon Sep 17 00:00:00 2001 From: Patrick Mayr Date: Tue, 23 Jan 2024 23:58:29 +0000 Subject: [PATCH] update design --- fet2020/templates/baseform/checkbox.html | 2 +- fet2020/templates/baseform/date.html | 6 +++--- fet2020/templates/baseform/date_time.html | 4 ++-- fet2020/templates/baseform/file.html | 5 ++--- fet2020/templates/baseform/password.html | 8 ++++---- fet2020/templates/baseform/select.html | 4 ++-- fet2020/templates/baseform/text.html | 8 ++++---- fet2020/templates/baseform/textarea.html | 8 ++++---- 8 files changed, 22 insertions(+), 23 deletions(-) diff --git a/fet2020/templates/baseform/checkbox.html b/fet2020/templates/baseform/checkbox.html index 8db6190b..8a65c044 100644 --- a/fet2020/templates/baseform/checkbox.html +++ b/fet2020/templates/baseform/checkbox.html @@ -13,5 +13,5 @@ {% if field.field.autofocus %}autofocus{% endif %} class="rounded border-gray-300 dark:border-none text-proprietary shadow-sm focus:border-blue-300 focus:ring focus:ring-offset-0 focus:ring-blue-200 dark:focus:ring-sky-700 focus:ring-opacity-50" > - {{ field.label }} {% if not field.field.required %}(optional){% endif %} + {{ field.label }} {% if not field.field.required %}(optional){% endif %} diff --git a/fet2020/templates/baseform/date.html b/fet2020/templates/baseform/date.html index 359f8ec4..bd09fc49 100644 --- a/fet2020/templates/baseform/date.html +++ b/fet2020/templates/baseform/date.html @@ -1,5 +1,5 @@