mpeltriaux
97b7156b9c
* disables ordering of parcel_group ("Gemarkung") column on tables * ordering can not be done properly due to more complex nature of this column's content * introduces "Keine Geometrie vorhanden" message instead of hour glass icon on entries where no geometry has been entered yet * properly orders last_modified column by moving null values to the lower end of the ordering
13 lines
540 B
HTML
13 lines
540 B
HTML
{% load i18n fontawesome_5 %}
|
|
|
|
{% if geometry.geom is not None %}
|
|
{% for entry in entries %}
|
|
<span class="badge pill-badge rlp-r">{{entry}}</span>
|
|
{% empty %}
|
|
<span class="text-info" title="{% trans 'If the geometry is not empty, the parcels are currently recalculated. Please refresh this page in a few moments.' %}">
|
|
{% fa5_icon 'hourglass-half' %}
|
|
</span>
|
|
{% endfor %}
|
|
{% else %}
|
|
<span class="badge pill-badge rlp-r-inv">{% translate 'No geometry added, yet.' %}</span>
|
|
{% endif %} |