Merge pull request 'steering' (#366) from steering into staging
Reviewed-on: #366
This commit was merged in pull request #366.
	This commit is contained in:
		@@ -22,7 +22,7 @@
 | 
			
		||||
                                    <small class="uppercase text-gray-600 dark:text-gray-100">
 | 
			
		||||
                                        <strong>{{ notification.category }}</strong> • {{ notification.created_at | date(timezone="Europe/Vienna", format="%d.%m.%Y %H:%M",) }}
 | 
			
		||||
                                    </small>
 | 
			
		||||
                                    <div class="mt-1">{{ notification.message | safe}}</div>
 | 
			
		||||
                                    <div class="mt-1">{{ notification.message | safe }}</div>
 | 
			
		||||
                                </div>
 | 
			
		||||
                                <div>
 | 
			
		||||
                                    {% if not notification.read_at %}
 | 
			
		||||
@@ -47,7 +47,7 @@
 | 
			
		||||
                                    <small class="uppercase text-gray-600 dark:text-gray-100">
 | 
			
		||||
                                        <strong>{{ notification.category }}</strong> • {{ notification.created_at | date(timezone="Europe/Vienna", format="%d.%m.%Y %H:%M") }}
 | 
			
		||||
                                    </small>
 | 
			
		||||
                                    <div class="mt-1">{{ notification.message | safe}}</div>
 | 
			
		||||
                                    <div class="mt-1">{{ notification.message | safe }}</div>
 | 
			
		||||
                                </div>
 | 
			
		||||
                            {% endif %}
 | 
			
		||||
                        {% endfor %}
 | 
			
		||||
@@ -154,7 +154,8 @@
 | 
			
		||||
                            <a href="/admin/list" class="block w-100 py-2 hover:text-primary-600">Fingerabdruck-Liste überprüfen</a>
 | 
			
		||||
                        </li>
 | 
			
		||||
                        <li class="py-1">
 | 
			
		||||
                            <a href="/admin/notification" class="block w-100 py-2 hover:text-primary-600">Nachricht ausschreiben</a>
 | 
			
		||||
                            <a href="/admin/notification"
 | 
			
		||||
                               class="block w-100 py-2 hover:text-primary-600">Nachricht ausschreiben</a>
 | 
			
		||||
                        </li>
 | 
			
		||||
                    </ul>
 | 
			
		||||
                </div>
 | 
			
		||||
 
 | 
			
		||||
@@ -2,21 +2,18 @@
 | 
			
		||||
{% extends "base" %}
 | 
			
		||||
{% block content %}
 | 
			
		||||
    <div class="max-w-screen-lg w-full">
 | 
			
		||||
        <h1 class="h1">Steuerberechtigte (Steuerprüfung oder Ausnahmegenehmigung)</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>
 | 
			
		||||
        <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>
 | 
			
		||||
        <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 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 %}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user