diff options
Diffstat (limited to 'archaeological_operations/templates/ishtar/sheet_operation.html')
-rw-r--r-- | archaeological_operations/templates/ishtar/sheet_operation.html | 30 |
1 files changed, 13 insertions, 17 deletions
diff --git a/archaeological_operations/templates/ishtar/sheet_operation.html b/archaeological_operations/templates/ishtar/sheet_operation.html index f884ed435..b868185df 100644 --- a/archaeological_operations/templates/ishtar/sheet_operation.html +++ b/archaeological_operations/templates/ishtar/sheet_operation.html @@ -302,25 +302,21 @@ <div class="row"> {% with geo_item=item %} {% include "ishtar/blocks/sheet_map.html"%} - <div class="col-12 col-lg-6 flex-wrap"> - {% include "ishtar/blocks/sheet_coordinates.html"%} - {% if next %} - {% field_flex_full "Towns" item|m2m_listing:'towns'|join:" ; " %} - {% else %} - {{ item.cached_towns_label }} - {% endif %} - {% field_flex "Address" item.address %} - {% if not item.address %} - {% field_flex "Main address" item.associated_file.address %} - {% field_flex "Complement" item.associated_file.address_complement %} - {% field_flex "Postal code" item.associated_file.postal_code %} - {% endif %} - {% if PROFILE.experimental_feature %} - {% include "ishtar/blocks/sheet_geo_items.html"%} - {% endif %} - </div> {% endwith %} </div> + <div class="row"> + {% if next %} + {% field_flex "Towns" item|m2m_listing:'towns'|join:" ; " %} + {% else %} + {% field_flex "Towns" item.cached_towns_label %} + {% endif %} + {% field_flex "Address" item.address %} + {% if not item.address %} + {% field_flex "Main address" item.associated_file.address %} + {% field_flex "Complement" item.associated_file.address_complement %} + {% field_flex "Postal code" item.associated_file.postal_code %} + {% endif %} + </div> </div> {% if display_sites %} |