diff options
Diffstat (limited to 'ishtar_common')
| -rw-r--r-- | ishtar_common/templates/ishtar/blocks/sheet_map.html | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/ishtar_common/templates/ishtar/blocks/sheet_map.html b/ishtar_common/templates/ishtar/blocks/sheet_map.html index a7db9c35f..8dbf008f8 100644 --- a/ishtar_common/templates/ishtar/blocks/sheet_map.html +++ b/ishtar_common/templates/ishtar/blocks/sheet_map.html @@ -25,7 +25,19 @@              >                <label for="map-ol-{{geo_item.SLUG}}-{{geo_item.pk}}-{{geodata.pk}}">                  <strong>{% if geodata.data_type %}{{geodata.data_type}}{% else %}{{geodata.name}}{% endif %}</strong></label><br/> +            {% if geodata.geometry_type == "POINT" %}{% with coordinates=geodata.display_coordinates_3d %}              {% if geodata.data_type %}{{geodata.name}}{% endif %} +            <br><span> +            {% if coordinates.0 != None %} +            <strong>{% trans "X:" %}</strong> {{coordinates.0}} ; +            <strong>{% trans "Y:" %}</strong> {{coordinates.1}} +            {% endif %} +            {% if coordinates.2 != None %} +            {% if coordinates.0 != None %}; {% endif %} +            <strong>{% trans "Z:" %}</strong> {{coordinates.2}} +            {% endif %} +            {% endwith %}{% endif %} +            </span>          </li>{% endfor %}          {% if geo_item.SLUG == "operation" and display_context_records %}          <li> | 
