diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-09-01 12:08:11 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:23:18 +0100 |
commit | e0bcbeaa84c2adf3b8a179cdea792dd58fa109b2 (patch) | |
tree | 3d9fc261943e56b46c70a9236713909b9761648d /archaeological_warehouse/templates | |
parent | a7acdf8ea0937321dc20e56d87abbe1fc6e240c6 (diff) | |
download | Ishtar-e0bcbeaa84c2adf3b8a179cdea792dd58fa109b2.tar.bz2 Ishtar-e0bcbeaa84c2adf3b8a179cdea792dd58fa109b2.zip |
Geo: select geo item to display on the sheet
Diffstat (limited to 'archaeological_warehouse/templates')
-rw-r--r-- | archaeological_warehouse/templates/ishtar/sheet_container.html | 3 | ||||
-rw-r--r-- | archaeological_warehouse/templates/ishtar/sheet_warehouse.html | 7 |
2 files changed, 3 insertions, 7 deletions
diff --git a/archaeological_warehouse/templates/ishtar/sheet_container.html b/archaeological_warehouse/templates/ishtar/sheet_container.html index a6a1e279b..3cc03cad1 100644 --- a/archaeological_warehouse/templates/ishtar/sheet_container.html +++ b/archaeological_warehouse/templates/ishtar/sheet_container.html @@ -153,9 +153,6 @@ <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" %} - </div> {% endwith %} </div> {% endif %} diff --git a/archaeological_warehouse/templates/ishtar/sheet_warehouse.html b/archaeological_warehouse/templates/ishtar/sheet_warehouse.html index e03feb026..4f4cfd6ba 100644 --- a/archaeological_warehouse/templates/ishtar/sheet_warehouse.html +++ b/archaeological_warehouse/templates/ishtar/sheet_warehouse.html @@ -103,12 +103,11 @@ <div class='row'> {% with geo_item=item %} {% if PROFILE.locate_warehouses %}{% include "ishtar/blocks/sheet_map.html"%}{% endif %} - <div class="col-12 col-lg-6 flex-wrap"> - {% if PROFILE.locate_warehouses %}{% include "ishtar/blocks/sheet_coordinates.html"%}{% endif %} - {% with full=True %}{% include "ishtar/blocks/sheet_address_section.html" %}{% endwith %} - </div> {% endwith %} </div> + <div class="row"> + {% with full=True %}{% include "ishtar/blocks/sheet_address_section.html" %}{% endwith %} + </div> {% endif %} </div> |