diff --git a/fet2020/templates/finance/bill_update.html b/fet2020/templates/finance/bill_update.html index 3a9164b6..2dd99b83 100644 --- a/fet2020/templates/finance/bill_update.html +++ b/fet2020/templates/finance/bill_update.html @@ -6,65 +6,125 @@

Rechnung {{ object.pk }}

-
-
- {% csrf_token %} - {% include "baseform/non_field_errors.html" %} - {% include "baseform/select.html" with field=form.bill_creator %} + + {% csrf_token %} + {% include "baseform/non_field_errors.html" %} -
- Bankdaten +
+

Bankdaten

+ Angaben zu den Bankdaten für die Rückerstattung des Rechnungsbetrags. - {% include "baseform/select.html" with field=form.payer %} - {% if form.name_text.value %} - {% include "baseform/text.html" with field=form.name_text %} - {% endif %} - {% if form.iban_text.value %} - {% include "baseform/text.html" with field=form.iban_text %} - {% endif %} - {% if form.bic_text.value %} - {% include "baseform/text.html" with field=form.bic_text %} - {% endif %} +
+
+ {% include "baseform/select.html" with field=form.payer %} +
-
- Rechnung - - {% include "baseform/text.html" with field=form.date %} - {% include "baseform/textarea.html" with field=form.invoice %} - {% include "baseform/text.html" with field=form.purpose %} - {% include "baseform/text.html" with field=form.amount %} - - {% if form.file_field.value %} - {% include "baseform/checkbox.html" with field=form.only_digital %} - - - {% else %} - Keine digitale Rechnung eingereicht. - {% endif %} - -
- Beschlusslage - - {% include "baseform/select.html" with field=form.affiliation %} - {% if form.resolution_text.value %} - {% include "baseform/text.html" with field=form.resolution_text %} - {% endif %} - -
- {% include "baseform/textarea.html" with field=form.comment %} - -
- + {% if form.name_text.value %} +
+ {% include "baseform/text.html" with field=form.name_text %} +
+ {% endif %} + {% if form.iban_text.value %} +
+ {% include "baseform/text.html" with field=form.iban_text %} +
+ {% endif %} + {% if form.bic_text.value %} +
+ {% include "baseform/text.html" with field=form.bic_text %} +
+ {% endif %}
- -
+
+
+

Rechnungsdetails

+ Details zur ursprünglichen bereits bezahlten Rechnung angeben. + +
+
+ {% include "baseform/textarea.html" with field=form.invoice %} +
+
+ {% include "baseform/text.html" with field=form.purpose %} +
+
+ {% include "baseform/date.html" with field=form.date %} +
+
+ +
+ + {% if form.file_field.value %} +
+ {% include "baseform/checkbox.html" with field=form.only_digital %} +
+ +
+ +
+ {% else %} +
+ + Keine digitale Rechnung eingereicht. +
+ {% endif %} + +
+
+
+

Beschlusslage

+ Informationen zur Beschlusslage dieser Rechnung. + +
+
+ {% include "baseform/select.html" with field=form.affiliation %} +
+ {% if form.resolution_text.value %} +
+ {% include "baseform/text.html" with field=form.resolution_text %} +
+ {% endif %} +
+
+
+

Kommentar

+ Erfordert etwas zusätzlichen Erklärungsbedarf oder sollen nachträglich Informationen bearbeitet werden? + +
+
+ {% include "baseform/textarea.html" with field=form.comment %} +
+
+
+
+ +
+
{% endblock %}