2024-04-06 18:27:20 +02:00
|
|
|
{% import "includes/macros" as macros %}
|
|
|
|
{% extends "base" %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="max-w-screen-lg w-full">
|
2024-04-14 18:36:27 +02:00
|
|
|
<h1 class="h1">Steuerberechtigungen</h1>
|
|
|
|
<div class="bg-white dark:bg-primary-900 text-black dark:text-white rounded-md block shadow mt-5">
|
|
|
|
<h2 class="h2">Bootskundige</h2>
|
|
|
|
<ul class="list-none ms-2 divide-y divide-gray-200 dark:divide-primary-600">
|
|
|
|
{% for cox in bootskundige | sort(attribute='name') %}<li class="py-1">{{ cox.name }}</li>{% endfor %}
|
|
|
|
</ul>
|
2024-04-06 18:27:20 +02:00
|
|
|
</div>
|
2024-04-14 18:36:27 +02:00
|
|
|
<div class="bg-white dark:bg-primary-900 text-black dark:text-white rounded-md block shadow mt-5">
|
|
|
|
<h2 class="h2">Steuerberechtigte oder Personen mit Ausnahmegenehmigung</h2>
|
|
|
|
<ul class="list-none ms-2 divide-y divide-gray-200 dark:divide-primary-600">
|
|
|
|
{% for cox in coxes | sort(attribute='name') %}<li class="py-1">{{ cox.name }}</li>{% endfor %}
|
|
|
|
</ul>
|
2024-04-06 18:27:20 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock content %}
|