rowt/templates/steering.html.tera
philipp b111c4a1b9
All checks were successful
CI/CD Pipeline / test (push) Successful in 12m2s
CI/CD Pipeline / deploy-staging (push) Has been skipped
CI/CD Pipeline / deploy-main (push) Has been skipped
lint html
2024-04-14 18:38:41 +02:00

20 lines
1.0 KiB
Plaintext

{% import "includes/macros" as macros %}
{% extends "base" %}
{% block content %}
<div class="max-w-screen-lg w-full">
<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>
</div>
<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>
</div>
</div>
{% endblock content %}