{% import "includes/macros" as macros %} {% extends "base" %} {% block content %}
{% if flash %} {% if flash.0 == "success" %}
{{ flash.1 }}
{% endif %} {% if flash.0 == "error" %}
{{ flash.1 }}
{% endif %} {% endif %}

Ausfahrten

{% for day in days %}

{{ day.day| date(format="%d.%m.%Y") }}

{% if day.planned_events | length > 0 %}
{% for planned_event in day.planned_events %}
{% if planned_event.cox_needed %} zusätzliche steuerperson notwendig!!!!!!elf!! {% else %} keine zusätzliche unbedingt notwendig {% endif %} {{ planned_event.planned_starting_time }} Uhr ({{ planned_event.name }})
Details
{% set_global cur_user_participates = false %} {% for rower in planned_event.rower%} {% if rower.name == loggedin_user.name %} {% set_global cur_user_participates = true %} {% endif %} {% endfor %} {% if cur_user_participates %} Abmelden {% endif %} {% if planned_event.max_people > planned_event.rower | length %} {% if cur_user_participates == false %} Mitrudern {% endif %} {% endif %}
{% if loggedin_user.is_cox %} {% set_global cur_user_participates = false %} {% for cox in planned_event.cox %} {% if cox.name == loggedin_user.name %} {% set_global cur_user_participates = true %} {% endif %} {% endfor %} {% if cur_user_participates %} Abmelden {% else %} Steuern {% endif %} {% endif %} {% endfor %}
{% endif %} {% if day.trips | length > 0 %}
{% for trip in day.trips %}
{{ trip.planned_starting_time }} Uhr ({{ trip.cox_name }})
Details
{% set_global cur_user_participates = false %} {% for rower in trip.rower %} {% if rower.name == loggedin_user.name %} {% set_global cur_user_participates = true %} {% endif %} {% endfor %} {% if cur_user_participates %} Abmelden {% endif %} {% if trip.max_people > trip.rower | length and trip.cox_id != loggedin_user.id and cur_user_participates == false%} Mitrudern {% endif %}
{% endfor %}
{% endif %}
{% if loggedin_user.is_admin %} Event hinzufügen {% endif %} {% if loggedin_user.is_cox%} Ausfahrt hinzufügen {% endif %}
{% endfor %}
{% endblock content %}