{% macro boatreservation() %} <div class="bg-white dark:bg-primary-900 rounded-md shadow pb-2 mt-3"> <h2 class="h2">Reservierungen ({{ reservations | length }})</h2> <div class="grid grid-cols-1 gap-3 mb-3 w-full"> {% for reservation in reservations %} <div class="pt-2 px-3 border-t text-primary-900 dark:text-white"> <strong class="block"> {{ reservation.start_date | date(format="%d.%m.%Y") }} {% if reservation.end_date != reservation.start_date %} - {{ reservation.end_date | date(format="%d.%m.%Y") }} {% endif %} <small>({{ reservation.time_desc }})</small> </strong> <span class="block"> {{ reservation.boat.name }} <small>({{ reservation.user_applicant.name }})</small> </span> <span class="text-sm italic">{{ reservation.usage }}</span> </div> {% else %} <p class="p-3 text-center text-black dark:text-white">Keine Reservierung</p> {% endfor %} </div> </div> {% endmacro boatreservation %} {% macro header(loggedin_user) %} <header class="bg-primary-900 text-white flex justify-center p-3 fixed w-full z-10"> <div class="max-w-screen-xl w-full flex justify-between items-center"> <div class="w-1/3 truncate"> <a href="/"> Hü {{ loggedin_user.name }} </a> </div> <div> {% if "scheckbuch" in loggedin_user.roles and loggedin_user.weight and loggedin_user.sex and loggedin_user.dob %} <a href="#" class="inline-flex justify-center rounded-md bg-primary-600 mx-1 px-3 py-2 text-sm font-semibold text-white hover:bg-primary-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary-600 cursor-pointer" data-sidebar="true" data-trigger="sidebar" data-header="Ergo Challenge" data-body="#mobile-menu-guest"> {% include "includes/book" %} <span class="sr-only">Ergo</span> </a> <div class="hidden"> <div id="mobile-menu-guest"> <a href="/ergo" class="block w-100 py-2 hover:text-primary-600 border-t">Ergo</a> </div> </div> {% endif %} {% if "scheckbuch" not in loggedin_user.roles %} <a href="#" class="inline-flex justify-center rounded-md bg-primary-600 mx-1 px-3 py-2 text-sm font-semibold text-white hover:bg-primary-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary-600 cursor-pointer" data-sidebar="true" data-trigger="sidebar" data-header="Menü" data-body="#mobile-menu"> {% include "includes/book" %} <span class="sr-only">Logbuch</span> </a> <div class="hidden"> <div id="mobile-menu"> <a href="/planned" class="block w-100 py-2 hover:text-primary-600">Geplante Ausfahrten</a> <a href="/log" class="block w-100 py-2 hover:text-primary-600 border-t">Ausfahrt eintragen</a> <a href="/log/show" class="block w-100 py-2 hover:text-primary-600 border-t">Logbuch</a> {% if "admin" in loggedin_user.roles or "Vorstand" in loggedin_user.roles %} <a href="/admin/user" class="block w-100 py-2 hover:text-primary-600 border-t">Userverwaltung</a> {% endif %} {% if loggedin_user.weight and loggedin_user.sex and loggedin_user.dob %} <a href="/ergo" class="block w-100 py-2 hover:text-primary-600 border-t">Ergo</a> {% endif %} <a href="/stat" class="block w-100 py-2 hover:text-primary-600 border-t">Statistik</a> <a href="/stat/boats" class="block w-100 py-2 hover:text-primary-600 border-t">Bootsauswertung</a> {% if "admin" in loggedin_user.roles %} <a href="/admin/boat" class="block w-100 py-2 hover:text-primary-600 border-t">Boote</a> {% endif %} <a href="/boatdamage" class="block w-100 py-2 hover:text-primary-600 border-t">Bootsschaden</a> <a href="/boatreservation" class="block w-100 py-2 hover:text-primary-600 border-t">Bootsreservierung</a> </div> </div> {% endif %} <a href="/auth/logout" class="inline-flex justify-center rounded-md bg-gray-200 ml-1 px-3 py-2 text-sm font-semibold text-primary-950 hover:bg-gray-300 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary-600 cursor-pointer"> <svg class="inline h-4" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-log-out"> <path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path> <polyline points="16 17 21 12 16 7"></polyline> <line x1="21" y1="12" x2="9" y2="12"></line> </svg> <span class="sr-only">Ausloggen</span> </a> </div> </div> </header> <div class="h-8"></div> {% endmacro header %} {% macro input(label, name, type, required=false, class='rounded-md', value='', min='', hide_label=false, id='', autofocus=false, wrapper_class='', pattern='', readonly=false, accept='') %} <div class="{{ wrapper_class }}"> <label for="{{ name }}" class="{% if hide_label %} sr-only {% else %} text-sm text-gray-600 dark:text-white {% endif %}"> {{ label }} </label> <input {% if type=='datetime-local' %}onclick='if (!this.value) setCurrentdate(this)'{% endif %} {% if id %} id="{{ id }}" {% else %} id="{{ name }}" {% endif %} name="{{ name }}" type="{{ type }}" {% if required %}required{% endif %} value="{{ value }}" class="input {{ class }}" placeholder="{% if hide_label %}{{ label }}{% endif %}" {% if min is defined %}min="{{ min }}"{% endif %} {% if autofocus %}autofocus{% endif %} {% if accept %}accept="{{ accept }}"{% endif %} {% if pattern %}pattern="{{ pattern }}"{% endif %} {% if readonly %}readonly{% endif %}> </div> {% endmacro input %} {% macro checkbox(label, name, id='', checked=false, class='', disabled=false) %} <label for="{{ name }}{{ id }}" class="flex items-center cursor-pointer text-black dark:text-white hover:text-gray-900 dark:hover:text-gray-100 {{ class }}"> <input type="checkbox" id="{{ name }}{{ id }}" name="{{ name }}" {% if checked %}checked{% endif %} {% if disabled %}disabled{% endif %} class="h-4 w-4 accent-primary-600 dark:accent-primary-200 mr-2" /> {{ label }} </label> {% endmacro checkbox %} {% macro select(label, data, name='trip_type', default='', id='', selected_id='', display='', extras='', class='', wrapper_class='', required=false, show_seats=false, new_last_entry='') %} <div class="{{ wrapper_class }}"> <label for="{{ name }}" class="text-sm text-gray-600 dark:text-gray-100">{{ label }}</label> {% if display == '' %} {% set display = ["name"] %} {% endif %} <select name="{{ name }}" {% if id %} id="{{ id }}" {% else %} id="{{ name }}" {% endif %} class="input rounded-md {{ class }}" {% if required %}required="required"{% endif %}> {% if default %}<option selected value>{{ default }}</option>{% endif %} {% for d in data %} <option value="{{ d.id }}" {% if d.id == selected_id %}selected{% endif %} {% if extras != '' %} {% for extra in extras %} {% if extra != 'on_water' and d[extra] %} data- {{ extra }}={{ d[extra] }} {% else %} {% if d[extra] %}disabled{% endif %} {% endif %} {% endfor %} {% endif %} {% if show_seats %} data-custom-properties='{"amount_seats": {{ d["amount_seats"] }}, "owner": "{{ d["owner"] }}", "default_destination": "{{ d["default_destination"] }}", "boat_in_ottensheim": {{ d["location_id"] == 2 }}, "boat_reserved_today": {{ d["reserved_today"] }}}' {% endif %}> {% for displa in display -%} {%- if d[displa] -%} {{- d[displa] -}} {%- else -%} {{- displa -}} {%- endif -%} {%- endfor %} </option> {% endfor %} {% if new_last_entry %}<option value="-1">{{ new_last_entry }}</option>{% endif %} </select> </div> {% endmacro select %} {% macro alert(message, type, class='') %} <div class="{{ class }} alert-{{ type }} text-white px-3 py-1 rounded-md text-center">{{ message }}</div> {% endmacro alert %} {% macro box(participants, empty_seats='', header='Freie Plätze:', text='Keine Ruderer angemeldet', bg='primary-600', color='white', trip_details_id='', allow_removing=false) %} <div class="text-{{ color }} bg-{{ bg }} text-center p-1 mt-1 rounded-t-md"> {{ header }} {{ empty_seats }} </div> <div class="p-2 border border-t-0 border-{{ bg }} mb-4 rounded-b-md"> {% if participants | length > 0 %} {% for rower in participants %} {{ rower.name }} {% if rower.is_guest %}<small class="text-gray-600 dark:text-gray-100">(Scheckbuch)</small>{% endif %} {% if rower.is_real_guest %} <small class="text-gray-600 dark:text-gray-100">(Gast)</small> {% if allow_removing %} <a href="/planned/remove/{{ trip_details_id }}/{{ rower.name }}" class="btn btn-attention btn-fw">Abmelden</a> {% endif %} {% endif %} <span class="hidden">(angemeldet seit {{ rower.registered_at }})</span> <br /> {% endfor %} {% else %} {{ text }} {% endif %} </div> {% endmacro box %} {% macro faq(question, answer) %} <div> <h2 class="flex mb-4 text-lg font-bold text-primary-900">{{ question }}</h2> <p class="text-primary-950">{{ answer | safe }}</p> </div> {% endmacro faq %}