show list of coxes

This commit is contained in:
2024-04-06 18:27:20 +02:00
parent 85a61dfdc0
commit 5164ce1f02
3 changed files with 48 additions and 1 deletions

View File

@ -81,6 +81,9 @@
<a href="/boatreservation"
class="block w-100 py-2 hover:text-primary-600">Bootsreservierung</a>
</li>
<li class="py-1">
<a href="/steering" class="block w-100 py-2 hover:text-primary-600">Steuerleute & Co</a>
</li>
</ul>
</div>
{% endif %}

View File

@ -0,0 +1,22 @@
{% import "includes/macros" as macros %}
{% extends "base" %}
{% block content %}
<div class="max-w-screen-lg w-full">
<h1 class="h1">Steuerleute + Personen mit Steuerberechtigung</h1>
<div class="border-r border-l border-gray-200 dark:border-primary-600">
<div class="border-t border-gray-200 dark:border-primary-600 bg-white dark:bg-primary-900 text-black dark:text-white flex justify-between items-center px-3 py-1">
<ul>
{% for cox in coxes | sort(attribute='name') %}<li>{{ cox.name }}</li>{% endfor %}
</ul>
</div>
</div>
<h1 class="h1">Bootskundige</h1>
<div class="border-r border-l border-gray-200 dark:border-primary-600">
<div class="border-t border-gray-200 dark:border-primary-600 bg-white dark:bg-primary-900 text-black dark:text-white flex justify-between items-center px-3 py-1">
<ul>
{% for cox in bootskundige | sort(attribute='name') %}<li>{{ cox.name }}</li>{% endfor %}
</ul>
</div>
</div>
</div>
{% endblock content %}