mpeltriaux
0b9587f17c
* improves filtering by gmrkng and krs * implements deferred loading of parcels on spatial referenced data objects * adds HTMX to project * improves detail view layout (mainly interesting for smaller displays/mobile)
16 lines
384 B
HTML
16 lines
384 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.empty %}
|
|
<div class="w-100">
|
|
<div class="alert alert-info">{% trans 'No geometry added, yet.' %}</div>
|
|
</div>
|
|
{% endif %}
|
|
{{geom_form.media}}
|
|
<div class="col-sm-12">
|
|
{{geom_form.geom}}
|
|
</div>
|