Compare commits

..

No commits in common. "3b72bf279fe950de03e0c4bd15e3991e483be3fb" and "11a96f4091393d9da3198069dd07f1fc41d562b9" have entirely different histories.

2 changed files with 2 additions and 7 deletions

View File

@ -9,12 +9,7 @@
<h2 class="h2">Angemeldete Personen: {{ schnupperanten | length }}</h2>
<div class="text-sm p-3">
<ol class="ms-2" style="list-style: number;">
{% for user in schnupperanten %}
<li class="py-1"
{% if "paid" in user.roles %}style="background-color: green;"{% endif %}>
{{ user.name }} ({{ user.mail }} | {{ user.notes }})
</li>
{% endfor %}
{% for user in schnupperanten %}<li class="py-1">{{ user.name }} ({{ user.mail }} | {{ user.notes }})</li>{% endfor %}
</ol>
</div>
</div>