From f3a837a8a648df208fa391edd4f5c19fb57a1214 Mon Sep 17 00:00:00 2001 From: mpeltriaux Date: Tue, 15 Feb 2022 10:56:49 +0100 Subject: [PATCH] #112 AbstractCompensation rendering enhancements * minor changes to detail view rendering of EMA, Compensation and EcoAccount --- .../compensation/includes/states-after.html | 14 +-- .../compensation/includes/states-before.html | 14 +-- .../eco_account/includes/states-after.html | 14 +-- .../eco_account/includes/states-before.html | 14 +-- .../ema/detail/includes/states-after.html | 14 +-- .../ema/detail/includes/states-before.html | 14 +-- locale/de/LC_MESSAGES/django.mo | Bin 37523 -> 37589 bytes locale/de/LC_MESSAGES/django.po | 91 +++++++++--------- 8 files changed, 90 insertions(+), 85 deletions(-) diff --git a/compensation/templates/compensation/detail/compensation/includes/states-after.html b/compensation/templates/compensation/detail/compensation/includes/states-after.html index 2c95ca1a..7faa0f1e 100644 --- a/compensation/templates/compensation/detail/compensation/includes/states-after.html +++ b/compensation/templates/compensation/detail/compensation/includes/states-after.html @@ -48,13 +48,13 @@ {% for state in after_states %} - {{ state.biotope_type }} - {% if state.biotope_type_details.count > 0 %} -
- {% for detail in state.biotope_type_details.all %} - {{detail.long_name}} - {% endfor %} - {% endif %} + {{ state.biotope_type.parent.long_name }} {% fa5_icon 'angle-right' %} {{ state.biotope_type.long_name }} ({{state.biotope_type.short_name}}) +
+ {% for detail in state.biotope_type_details.all %} + {{detail.long_name}} + {% empty %} + {% trans 'No biotope type details' %} + {% endfor %} {{ state.surface|floatformat:2 }} m² diff --git a/compensation/templates/compensation/detail/compensation/includes/states-before.html b/compensation/templates/compensation/detail/compensation/includes/states-before.html index d2ba3697..23faed43 100644 --- a/compensation/templates/compensation/detail/compensation/includes/states-before.html +++ b/compensation/templates/compensation/detail/compensation/includes/states-before.html @@ -48,13 +48,13 @@ {% for state in before_states %} - {{ state.biotope_type }} - {% if state.biotope_type_details.count > 0 %} -
- {% for detail in state.biotope_type_details.all %} - {{detail.long_name}} - {% endfor %} - {% endif %} + {{ state.biotope_type.parent.long_name }} {% fa5_icon 'angle-right' %} {{ state.biotope_type.long_name }} ({{state.biotope_type.short_name}}) +
+ {% for detail in state.biotope_type_details.all %} + {{detail.long_name}} + {% empty %} + {% trans 'No biotope type details' %} + {% endfor %} {{ state.surface|floatformat:2 }} m² diff --git a/compensation/templates/compensation/detail/eco_account/includes/states-after.html b/compensation/templates/compensation/detail/eco_account/includes/states-after.html index bead6f2b..4fce2f0f 100644 --- a/compensation/templates/compensation/detail/eco_account/includes/states-after.html +++ b/compensation/templates/compensation/detail/eco_account/includes/states-after.html @@ -48,13 +48,13 @@ {% for state in after_states %} - {{ state.biotope_type }} - {% if state.biotope_type_details.count > 0 %} -
- {% for detail in state.biotope_type_details.all %} - {{detail.long_name}} - {% endfor %} - {% endif %} + {{ state.biotope_type.parent.long_name }} {% fa5_icon 'angle-right' %} {{ state.biotope_type.long_name }} ({{state.biotope_type.short_name}}) +
+ {% for detail in state.biotope_type_details.all %} + {{detail.long_name}} + {% empty %} + {% trans 'No biotope type details' %} + {% endfor %} {{ state.surface|floatformat:2 }} m² diff --git a/compensation/templates/compensation/detail/eco_account/includes/states-before.html b/compensation/templates/compensation/detail/eco_account/includes/states-before.html index c19b4049..1c6311cb 100644 --- a/compensation/templates/compensation/detail/eco_account/includes/states-before.html +++ b/compensation/templates/compensation/detail/eco_account/includes/states-before.html @@ -48,13 +48,13 @@ {% for state in before_states %} - {{ state.biotope_type }} - {% if state.biotope_type_details.count > 0 %} -
- {% for detail in state.biotope_type_details.all %} - {{detail.long_name}} - {% endfor %} - {% endif %} + {{ state.biotope_type.parent.long_name }} {% fa5_icon 'angle-right' %} {{ state.biotope_type.long_name }} ({{state.biotope_type.short_name}}) +
+ {% for detail in state.biotope_type_details.all %} + {{detail.long_name}} + {% empty %} + {% trans 'No biotope type details' %} + {% endfor %} {{ state.surface|floatformat:2 }} m² diff --git a/ema/templates/ema/detail/includes/states-after.html b/ema/templates/ema/detail/includes/states-after.html index e09f4ba5..56e87be1 100644 --- a/ema/templates/ema/detail/includes/states-after.html +++ b/ema/templates/ema/detail/includes/states-after.html @@ -46,13 +46,13 @@ {% for state in after_states %} - {{ state.biotope_type }} - {% if state.biotope_type_details.count > 0 %} -
- {% for detail in state.biotope_type_details.all %} - {{detail.long_name}} - {% endfor %} - {% endif %} + {{ state.biotope_type.parent.long_name }} {% fa5_icon 'angle-right' %} {{ state.biotope_type.long_name }} ({{state.biotope_type.short_name}}) +
+ {% for detail in state.biotope_type_details.all %} + {{detail.long_name}} + {% empty %} + {% trans 'No biotope type details' %} + {% endfor %} {{ state.surface|floatformat:2 }} m² diff --git a/ema/templates/ema/detail/includes/states-before.html b/ema/templates/ema/detail/includes/states-before.html index 1369829b..2fd7c359 100644 --- a/ema/templates/ema/detail/includes/states-before.html +++ b/ema/templates/ema/detail/includes/states-before.html @@ -46,13 +46,13 @@ {% for state in before_states %} - {{ state.biotope_type }} - {% if state.biotope_type_details.count > 0 %} -
- {% for detail in state.biotope_type_details.all %} - {{detail.long_name}} - {% endfor %} - {% endif %} + {{ state.biotope_type.parent.long_name }} {% fa5_icon 'angle-right' %} {{ state.biotope_type.long_name }} ({{state.biotope_type.short_name}}) +
+ {% for detail in state.biotope_type_details.all %} + {{detail.long_name}} + {% empty %} + {% trans 'No biotope type details' %} + {% endfor %} {{ state.surface|floatformat:2 }} m² diff --git a/locale/de/LC_MESSAGES/django.mo b/locale/de/LC_MESSAGES/django.mo index e9a94ccb374f1fcb49ae6b60cf0df3131a61819d..cbbff8e8beb3e75746f17607296ed15d29eb4fd1 100644 GIT binary patch delta 10433 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 Ul~NnT?H, YEAR. # -#: compensation/filters.py:122 compensation/forms/modalForms.py:37 -#: compensation/forms/modalForms.py:48 compensation/forms/modalForms.py:64 -#: compensation/forms/modalForms.py:357 compensation/forms/modalForms.py:469 +#: compensation/filters.py:122 compensation/forms/modalForms.py:36 +#: compensation/forms/modalForms.py:47 compensation/forms/modalForms.py:63 +#: compensation/forms/modalForms.py:356 compensation/forms/modalForms.py:463 #: intervention/forms/forms.py:54 intervention/forms/forms.py:156 #: intervention/forms/forms.py:168 intervention/forms/modalForms.py:127 #: intervention/forms/modalForms.py:140 intervention/forms/modalForms.py:153 @@ -26,7 +26,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-02-15 10:08+0100\n" +"POT-Creation-Date: 2022-02-15 10:53+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -95,7 +95,7 @@ msgstr "" #: analysis/templates/analysis/reports/includes/eco_account/amount.html:3 #: analysis/templates/analysis/reports/includes/intervention/amount.html:3 #: analysis/templates/analysis/reports/includes/old_data/amount.html:3 -#: compensation/forms/modalForms.py:453 +#: compensation/forms/modalForms.py:447 #: compensation/templates/compensation/detail/eco_account/includes/deductions.html:34 #: intervention/templates/intervention/detail/includes/deductions.html:31 msgid "Amount" @@ -213,7 +213,7 @@ msgstr "Abbuchungen" #: analysis/templates/analysis/reports/includes/eco_account/deductions.html:9 #: analysis/templates/analysis/reports/includes/eco_account/deductions.html:11 -#: compensation/forms/modalForms.py:195 +#: compensation/forms/modalForms.py:194 #: compensation/templates/compensation/detail/compensation/includes/states-after.html:36 #: compensation/templates/compensation/detail/compensation/includes/states-before.html:36 #: compensation/templates/compensation/detail/eco_account/includes/states-after.html:36 @@ -246,7 +246,7 @@ msgid "Compensation" msgstr "Kompensation" #: analysis/templates/analysis/reports/includes/intervention/compensated_by.html:21 -#: compensation/forms/modalForms.py:77 +#: compensation/forms/modalForms.py:76 msgid "Payment" msgstr "Zahlung" @@ -352,8 +352,8 @@ msgstr "Aussagekräftiger Titel" msgid "Compensation XY; Location ABC" msgstr "Kompensation XY; Flur ABC" -#: compensation/forms/forms.py:57 compensation/forms/modalForms.py:63 -#: compensation/forms/modalForms.py:356 compensation/forms/modalForms.py:468 +#: compensation/forms/forms.py:57 compensation/forms/modalForms.py:62 +#: compensation/forms/modalForms.py:355 compensation/forms/modalForms.py:462 #: compensation/templates/compensation/detail/compensation/includes/actions.html:35 #: compensation/templates/compensation/detail/compensation/includes/deadlines.html:34 #: compensation/templates/compensation/detail/compensation/includes/documents.html:34 @@ -371,7 +371,7 @@ msgstr "Kompensation XY; Flur ABC" msgid "Comment" msgstr "Kommentar" -#: compensation/forms/forms.py:59 compensation/forms/modalForms.py:470 +#: compensation/forms/forms.py:59 compensation/forms/modalForms.py:464 #: intervention/forms/forms.py:182 msgid "Additional comment" msgstr "Zusätzlicher Kommentar" @@ -469,73 +469,73 @@ msgstr "Ökokonto XY; Flur ABC" msgid "Edit Eco-Account" msgstr "Ökokonto bearbeiten" -#: compensation/forms/modalForms.py:38 +#: compensation/forms/modalForms.py:37 msgid "in Euro" msgstr "in Euro" -#: compensation/forms/modalForms.py:47 +#: compensation/forms/modalForms.py:46 #: intervention/templates/intervention/detail/includes/payments.html:31 msgid "Due on" msgstr "Fällig am" -#: compensation/forms/modalForms.py:50 +#: compensation/forms/modalForms.py:49 msgid "Due on which date" msgstr "Zahlung wird an diesem Datum erwartet" -#: compensation/forms/modalForms.py:65 compensation/forms/modalForms.py:358 +#: compensation/forms/modalForms.py:64 compensation/forms/modalForms.py:357 #: intervention/forms/modalForms.py:154 konova/forms.py:395 msgid "Additional comment, maximum {} letters" msgstr "Zusätzlicher Kommentar, maximal {} Zeichen" -#: compensation/forms/modalForms.py:78 +#: compensation/forms/modalForms.py:77 msgid "Add a payment for intervention '{}'" msgstr "Neue Ersatzzahlung zu Eingriff '{}' hinzufügen" -#: compensation/forms/modalForms.py:98 +#: compensation/forms/modalForms.py:97 msgid "If there is no date you can enter, please explain why." msgstr "Falls Sie kein Datum angeben können, erklären Sie bitte weshalb." -#: compensation/forms/modalForms.py:159 compensation/forms/modalForms.py:171 +#: compensation/forms/modalForms.py:158 compensation/forms/modalForms.py:170 msgid "Biotope Type" msgstr "Biotoptyp" -#: compensation/forms/modalForms.py:162 +#: compensation/forms/modalForms.py:161 msgid "Select the biotope type" msgstr "Biotoptyp wählen" -#: compensation/forms/modalForms.py:176 compensation/forms/modalForms.py:188 +#: compensation/forms/modalForms.py:175 compensation/forms/modalForms.py:187 msgid "Biotope additional type" msgstr "Zusatzbezeichnung" -#: compensation/forms/modalForms.py:179 +#: compensation/forms/modalForms.py:178 msgid "Select an additional biotope type" msgstr "Zusatzbezeichnung wählen" -#: compensation/forms/modalForms.py:198 intervention/forms/modalForms.py:340 +#: compensation/forms/modalForms.py:197 intervention/forms/modalForms.py:340 msgid "in m²" msgstr "" -#: compensation/forms/modalForms.py:209 +#: compensation/forms/modalForms.py:208 msgid "New state" msgstr "Neuer Zustand" -#: compensation/forms/modalForms.py:210 +#: compensation/forms/modalForms.py:209 msgid "Insert data for the new state" msgstr "Geben Sie die Daten des neuen Zustandes ein" -#: compensation/forms/modalForms.py:217 konova/forms.py:193 +#: compensation/forms/modalForms.py:216 konova/forms.py:193 msgid "Object removed" msgstr "Objekt entfernt" -#: compensation/forms/modalForms.py:328 +#: compensation/forms/modalForms.py:327 msgid "Deadline Type" msgstr "Fristart" -#: compensation/forms/modalForms.py:331 +#: compensation/forms/modalForms.py:330 msgid "Select the deadline type" msgstr "Fristart wählen" -#: compensation/forms/modalForms.py:340 +#: compensation/forms/modalForms.py:339 #: compensation/templates/compensation/detail/compensation/includes/deadlines.html:31 #: compensation/templates/compensation/detail/eco_account/includes/deadlines.html:31 #: ema/templates/ema/detail/includes/deadlines.html:31 @@ -543,51 +543,51 @@ msgstr "Fristart wählen" msgid "Date" msgstr "Datum" -#: compensation/forms/modalForms.py:343 +#: compensation/forms/modalForms.py:342 msgid "Select date" msgstr "Datum wählen" -#: compensation/forms/modalForms.py:370 +#: compensation/forms/modalForms.py:369 msgid "New deadline" msgstr "Neue Frist" -#: compensation/forms/modalForms.py:371 +#: compensation/forms/modalForms.py:370 msgid "Insert data for the new deadline" msgstr "Geben Sie die Daten der neuen Frist ein" -#: compensation/forms/modalForms.py:411 +#: compensation/forms/modalForms.py:410 msgid "Action Type" msgstr "Maßnahmentyp" -#: compensation/forms/modalForms.py:414 +#: compensation/forms/modalForms.py:413 msgid "Select the action type" msgstr "Maßnahmentyp wählen" -#: compensation/forms/modalForms.py:424 compensation/forms/modalForms.py:436 +#: compensation/forms/modalForms.py:418 compensation/forms/modalForms.py:430 msgid "Action Type detail" msgstr "Zusatzmerkmal" -#: compensation/forms/modalForms.py:427 +#: compensation/forms/modalForms.py:421 msgid "Select the action type detail" msgstr "Zusatzmerkmal wählen" -#: compensation/forms/modalForms.py:441 +#: compensation/forms/modalForms.py:435 msgid "Unit" msgstr "Einheit" -#: compensation/forms/modalForms.py:444 +#: compensation/forms/modalForms.py:438 msgid "Select the unit" msgstr "Einheit wählen" -#: compensation/forms/modalForms.py:456 +#: compensation/forms/modalForms.py:450 msgid "Insert the amount" msgstr "Menge eingeben" -#: compensation/forms/modalForms.py:481 +#: compensation/forms/modalForms.py:475 msgid "New action" msgstr "Neue Maßnahme" -#: compensation/forms/modalForms.py:482 +#: compensation/forms/modalForms.py:476 msgid "Insert data for the new action" msgstr "Geben Sie die Daten der neuen Maßnahme ein" @@ -751,18 +751,19 @@ msgstr "Aktionen" #: compensation/templates/compensation/detail/compensation/includes/actions.html:57 #: compensation/templates/compensation/detail/eco_account/includes/actions.html:56 +#: ema/templates/ema/detail/includes/actions.html:54 msgid "No action type details" msgstr "Keine Zusatzmerkmale" #: compensation/templates/compensation/detail/compensation/includes/actions.html:68 #: compensation/templates/compensation/detail/eco_account/includes/actions.html:67 -#: ema/templates/ema/detail/includes/actions.html:67 +#: ema/templates/ema/detail/includes/actions.html:65 msgid "Edit action" msgstr "Maßnahme bearbeiten" #: compensation/templates/compensation/detail/compensation/includes/actions.html:71 #: compensation/templates/compensation/detail/eco_account/includes/actions.html:70 -#: ema/templates/ema/detail/includes/actions.html:70 +#: ema/templates/ema/detail/includes/actions.html:68 msgid "Remove action" msgstr "Maßnahme entfernen" @@ -892,7 +893,7 @@ msgid "Biotope type" msgstr "Biotoptyp" #: compensation/templates/compensation/detail/compensation/includes/states-after.html:62 -#: compensation/templates/compensation/detail/compensation/includes/states-before.html:62 +#: compensation/templates/compensation/detail/compensation/includes/states-before.html:64 #: compensation/templates/compensation/detail/eco_account/includes/states-after.html:62 #: compensation/templates/compensation/detail/eco_account/includes/states-before.html:62 #: ema/templates/ema/detail/includes/states-after.html:60 @@ -901,7 +902,7 @@ msgid "Edit state" msgstr "Zustand bearbeiten" #: compensation/templates/compensation/detail/compensation/includes/states-after.html:65 -#: compensation/templates/compensation/detail/compensation/includes/states-before.html:65 +#: compensation/templates/compensation/detail/compensation/includes/states-before.html:67 #: compensation/templates/compensation/detail/eco_account/includes/states-after.html:65 #: compensation/templates/compensation/detail/eco_account/includes/states-before.html:65 #: ema/templates/ema/detail/includes/states-after.html:63 @@ -928,6 +929,10 @@ msgstr "Neuen Ausgangszustand hinzufügen" msgid "Missing surfaces according to states after: " msgstr "Fehlende Flächenmengen laut Zielzustand: " +#: compensation/templates/compensation/detail/compensation/includes/states-before.html:57 +msgid "No biotope type details" +msgstr "Keine Zusatzbezeichnungen" + #: compensation/templates/compensation/detail/compensation/view.html:44 msgid "Is CEF compensation" msgstr "Ist CEF Maßnahme"