allow move from schnuppern to scheckbuch

This commit is contained in:
2024-08-19 11:53:28 +02:00
parent 818cf0d40b
commit eb15421d08
2 changed files with 47 additions and 3 deletions

View File

@ -12,7 +12,8 @@
{% for user in schnupperanten %}
<li class="py-1"
{% if "paid" in user.roles %}style="background-color: green;"{% endif %}>
{{ user.name }} ({{ user.mail }} | {{ user.notes }})
{{ user.name }} ({{ user.mail }} {% if user.notes %} | {{ user.notes }}{% endif %})
<a href="/admin/user/move/schnupperant/{{ user.id }}/to/scheckbuch">Zu Scheckbuch umwandeln</a>
</li>
{% endfor %}
</ol>