2024-09/07/jinja2_for-if.j2
2024-09-18 09:00:52 +02:00

11 lines
283 B
Django/Jinja

{% for u in users if not u.hidden %}
{{ loop.cycle('+', '-', ' ') }} {{ loop.index }} {{ loop.first }}
{% if u.sex == "M" %}Herr
{% elif u.sex == "W" %}Frau
{% else %}Divers
{% endif %} {{ u.firstname }} {{ u.lastname }}
{% else %}
Keine Benutzer gefunden!
{% endfor %}