12 lines
314 B
HTML
12 lines
314 B
HTML
|
{% load i18n %}
|
||
|
|
||
|
{% comment %}
|
||
|
Encapsules the rendering and initializing of a geometry view component, e.g. used in the detail views.
|
||
|
{% endcomment %}
|
||
|
|
||
|
|
||
|
{% if geom_form.area == 0 %}
|
||
|
<div class="alert alert-info">{% trans 'No geometry added, yet.' %}</div>
|
||
|
{% endif %}
|
||
|
{{geom_form.media}}
|
||
|
{{geom_form.geom}}
|