[TASK] text no boats on water

This commit is contained in:
Marie Birner
2023-09-28 14:53:08 +02:00
committed by philipp
parent fedbc00dc5
commit f46e6b47c7
3 changed files with 22 additions and 11 deletions

View File

@ -30,9 +30,13 @@
<h2 class="h2">Am Wasser</h2>
<div>
{% for log in on_water %}
{{ log::show(log=log, state="on_water", allowed_to_close=true, only_ones=false) }}
{% endfor %}
{% if on_water | length > 0 %}
{% for log in on_water %}
{{ log::show(log=log, state="on_water", allowed_to_close=true, only_ones=false) }}
{% endfor %}
{% else %}
<p class="p-3 text-center">Kein Boot am Wasser</p>
{% endif %}
</div>
</div>
</div>