master #224

Merged
mpeltriaux merged 9 commits from master into Docker 2022-10-19 07:35:31 +02:00
Showing only changes of commit 48aee04955 - Show all commits

View File

@ -1,6 +1,11 @@
{% load i18n fontawesome_5 %} {% load i18n fontawesome_5 %}
{% if geometry.geom is not None %} {% if geometry.geom is None or geometry.geom.empty %}
<span class="text-info" title="{% translate 'No geometry added, yet.' %}">
{% fa5_icon 'search-location' %}
{% fa5_icon 'question' %}
</span>
{% else %}
{% for entry in entries %} {% for entry in entries %}
<span class="badge pill-badge rlp-r">{{entry}}</span> <span class="badge pill-badge rlp-r">{{entry}}</span>
{% empty %} {% empty %}
@ -8,9 +13,4 @@
{% fa5_icon 'hourglass-half' %} {% fa5_icon 'hourglass-half' %}
</span> </span>
{% endfor %} {% endfor %}
{% else %}
<span class="text-info" title="{% translate 'No geometry added, yet.' %}">
{% fa5_icon 'search-location' %}
{% fa5_icon 'question' %}
</span>
{% endif %} {% endif %}