From c219059cb386f9e72a13d631776c7b040a2c1a40 Mon Sep 17 00:00:00 2001 From: Patrick Mayr Date: Sun, 4 Feb 2024 21:29:18 +0000 Subject: [PATCH] update design --- .../templates/finance/resolution_create.html | 39 ++++++++++++------- .../templates/finance/resolution_update.html | 39 ++++++++++++------- 2 files changed, 50 insertions(+), 28 deletions(-) diff --git a/fet2020/templates/finance/resolution_create.html b/fet2020/templates/finance/resolution_create.html index 7c4b367d..a25e00bc 100644 --- a/fet2020/templates/finance/resolution_create.html +++ b/fet2020/templates/finance/resolution_create.html @@ -6,22 +6,33 @@

Neuen Beschluss eingeben

-
-
- {% csrf_token %} - {% include "baseform/non_field_errors.html" %} + + {% csrf_token %} + {% include "baseform/non_field_errors.html" %} - {% include "baseform/select.html" with field=form.option %} - {% include "baseform/text.html" with field=form.name %} - {% include "baseform/date.html" with field=form.date %} - {% include "baseform/text.html" with field=form.voting %} - {% include "baseform/textarea.html" with field=form.voting_text %} - -
- +
+
+
+ {% include "baseform/select.html" with field=form.option %} +
+
+ {% include "baseform/text.html" with field=form.name %} +
+
+ {% include "baseform/date.html" with field=form.date %} +
+
+ {% include "baseform/text.html" with field=form.voting %} +
+
+ {% include "baseform/textarea.html" with field=form.voting_text %} +
- -
+ +
+ +
+
{% endblock %} diff --git a/fet2020/templates/finance/resolution_update.html b/fet2020/templates/finance/resolution_update.html index 91c9a25d..0d6b79d5 100644 --- a/fet2020/templates/finance/resolution_update.html +++ b/fet2020/templates/finance/resolution_update.html @@ -6,22 +6,33 @@

Beschluss {{ object.id }}

-
-
- {% csrf_token %} - {% include "baseform/non_field_errors.html" %} + + {% csrf_token %} + {% include "baseform/non_field_errors.html" %} - {% include "baseform/select.html" with field=form.option %} - {% include "baseform/text.html" with field=form.name %} - {% include "baseform/text.html" with field=form.date %} - {% include "baseform/text.html" with field=form.voting %} - {% include "baseform/textarea.html" with field=form.voting_text %} - -
- +
+
+
+ {% include "baseform/select.html" with field=form.option %} +
+
+ {% include "baseform/text.html" with field=form.name %} +
+
+ {% include "baseform/date.html" with field=form.date %} +
+
+ {% include "baseform/text.html" with field=form.voting %} +
+
+ {% include "baseform/textarea.html" with field=form.voting_text %} +
- -
+ +
+ +
+
{% endblock %}