blob: c29f7de6180a1aa95d632a509752b8646fe3c43b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% load i18n %}{% if geo_item.x or geo_item.y or geo_item.z %}
<dl class="col-12 d-flex flex-wrap">
<dt class="col-12">{% trans "Coordinates" %}</dt>
<dd class="col-12">
{% trans "X:"%} {{geo_item.x|default_if_none:"-"}}
{% if geo_item.estimated_error_x %} ({% trans "error:" %} {{geo_item.estimated_error_x}}){% endif %},
{% trans "Y:"%} {{geo_item.y|default_if_none:"-"}},
{% if geo_item.estimated_error_y %} ({% trans "error:" %} {{geo_item.estimated_error_y}}){% endif %},
{% trans "Z:"%} {{geo_item.z|default_if_none:"-"}}
{% if geo_item.estimated_error_z %} ({% trans "error:" %} {{geo_item.estimated_error_z}}){% endif %}
{% if geo_item.spatial_reference_system %}
– {{geo_item.spatial_reference_system.label}}{% if geo_item.spatial_reference_system.srid %} -
{% trans "SRID"%} {{geo_item.spatial_reference_system.srid}}{% endif %}
{% endif %}
</dd>
</dl>
{% endif %}
|