diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-06-12 10:49:18 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-06-12 10:49:18 +0200 |
commit | a859b91583f53eae8f34f67f554acff9abd893a2 (patch) | |
tree | deeee43127d9b782684a31cb4ee8d94aac124078 /archaeological_operations/templates | |
parent | ce18a4f6c6cfbdb83caf0a77c9989a34a6e65f16 (diff) | |
download | Ishtar-a859b91583f53eae8f34f67f554acff9abd893a2.tar.bz2 Ishtar-a859b91583f53eae8f34f67f554acff9abd893a2.zip |
🩹 minor fix on sheets (refs #5865, #4808, #5867)
Diffstat (limited to 'archaeological_operations/templates')
-rw-r--r-- | archaeological_operations/templates/ishtar/blocks/window_tables/parcels.html | 2 | ||||
-rw-r--r-- | archaeological_operations/templates/ishtar/sheet_administrativeact.html | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/archaeological_operations/templates/ishtar/blocks/window_tables/parcels.html b/archaeological_operations/templates/ishtar/blocks/window_tables/parcels.html index 68627d57a..1d06a2e33 100644 --- a/archaeological_operations/templates/ishtar/blocks/window_tables/parcels.html +++ b/archaeological_operations/templates/ishtar/blocks/window_tables/parcels.html @@ -22,7 +22,7 @@ {#<td class='string'>{{operation.parcel.owner}}</td>#} </tr> {% empty %} - <tr><td colspan="4" class='no_items'>{% trans "No parcel" %}</td></tr> + <tr><td colspan="5" class='no_items'>{% trans "No parcel" %}</td></tr> {% endfor %} </tbody> </table> diff --git a/archaeological_operations/templates/ishtar/sheet_administrativeact.html b/archaeological_operations/templates/ishtar/sheet_administrativeact.html index 61cc4a256..2c52ffae7 100644 --- a/archaeological_operations/templates/ishtar/sheet_administrativeact.html +++ b/archaeological_operations/templates/ishtar/sheet_administrativeact.html @@ -54,9 +54,9 @@ {% field_flex_detail "Treatment request" item.treatment_file %} {% if item.operation and item.operation.surface %} - <div class="col-12 col-md-6 col-lg-4 d-flex flex-wrap row"> - <dt class="col-5">{% trans "Surface"%}</dt> - <dd class='col-7'> + <div class="col-12 col-md-6 col-lg-3 flex-wrap"> + <dt>{% trans "Surface"%}</dt> + <dd> {{ item.operation.surface }} m<sup>2</sup> ({{ item.operation.surface_ha }} ha) </dd> </div> |