forked from Ruderverein-Donau-Linz/rowt
79 lines
2.5 KiB
Plaintext
79 lines
2.5 KiB
Plaintext
{% extends "base" %}
|
|
{% block content %}
|
|
|
|
{% for day_with_trip in data %}
|
|
{% set day = day_with_trip.day %}
|
|
{% set day_string = day.day | date(format="%Y-%m-%d") %}
|
|
{% set trips = day_with_trip.trips %}
|
|
{{ day.day | date(format="%d.%m.%Y")}}
|
|
<br />
|
|
|
|
|
|
{% if day.planned_amount_cox > 0%}
|
|
Geplante Steuerpersonen: {{ day.planned_amount_cox}}<br />
|
|
Geplante Abfahrtszeit: {{ day.planned_starting_time }}<br />
|
|
|
|
Angemeldete Personen:
|
|
<ol>
|
|
{% for trip in trips %}
|
|
<li>{{ trip.user.name }}</li>
|
|
{% endfor %}
|
|
</ol>
|
|
|
|
{% if day.open_registration %}
|
|
<details>
|
|
<summary class="button">+</summary>
|
|
<form method="post" action="/register">
|
|
<input type="hidden" name="_method" value="put" />
|
|
<input type="hidden" name="day" value="{{ day_string }}" />
|
|
<div class="row">
|
|
<div class="six columns">
|
|
<label for="name">Name</label>
|
|
<input class="u-full-width" type="text" id="name" name="name" value="{{ user.name }}" />
|
|
</div>
|
|
<div class="six columns">
|
|
<input class="button-primary" type="submit" value="Speichern">
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</details>
|
|
{% else %}
|
|
Anmeldung an diesem Tag leider nicht möglich (zB bei USI Kursen)
|
|
{% endif %}
|
|
{% else %}
|
|
(Noch) keine Ausfahrt geplant
|
|
{% endif %}
|
|
|
|
<details>
|
|
<summary class="button">✎</summary>
|
|
<form method="post" action="/day">
|
|
<input type="hidden" name="_method" value="put" />
|
|
<input type="hidden" name="day" value="{{ day_string }}" />
|
|
<div class="row">
|
|
<div class="three columns">
|
|
<label for="planned_amount_cox">Geplante Steuerpersonen</label>
|
|
<input class="u-full-width" type="number" id="planned_amount_cox" name="planned_amount_cox" value="{{ day.planned_amount_cox }}">
|
|
</div>
|
|
<div class="three columns">
|
|
<label for="planned_starting_time">Geplante Abfahrtszeit</label>
|
|
<input class="u-full-width" type="time" id="planned_starting_time" name="planned_starting_time" value="{% if day.planned_starting_time %}{{ day.planned_starting_time }}{% else %}17:00{%endif%}">
|
|
</div>
|
|
<div class="three columns">
|
|
<label for="open_registration">Registrierung offen</label>
|
|
<input class="u-full-width" type="checkbox" id="open_registration" name="open_registration" {% if not day or day.open_registration %} checked="true" {% endif %}/>
|
|
</div>
|
|
<div class="three columns">
|
|
<input class="button-primary" type="submit" value="Speichern">
|
|
</div>
|
|
|
|
</div>
|
|
</form>
|
|
</details>
|
|
|
|
<hr />
|
|
{% endfor %}
|
|
|
|
|
|
{% endblock content %}
|
|
|