11 lines
283 B
Plaintext
11 lines
283 B
Plaintext
|
{% 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 %}
|
||
|
|