{% extends '@RapsysAir/body.html.twig' %} {% block content %}

{{ session.title }} {{ session.location.at }}

{% trans %}Organizer{% endtrans %}

{% trans %}Attributed to{% endtrans %}
{% if session.application is null %} {% trans %}None{% endtrans %} {% else %} {{ session.application.user.title }} {% endif %}
{% if session.snippet.description is defined and session.snippet.description %}
{% trans %}Description{% endtrans %}
{{ session.snippet.description|striptags|markdown_to_html }}
{% endif %} {% if session.application.user.donation is defined and session.application.user.donation %}
{% trans %}Donation{% endtrans %}
{{ 'Contribute to %title%'|trans({'%title%': session.application.user.title}) }}
{% endif %} {% if session.application.user.site is defined and session.application.user.site %}
{% trans %}Website{% endtrans %}
{{ 'Website of %title%'|trans({'%title%': session.application.user.title}) }}
{% endif %}

{% trans %}Schedule{% endtrans %}

{% trans %}Slot{% endtrans %}
{{ session.slot.title }}
{% trans %}Start{% endtrans %}
{{ session.start.format('Y-m-d H:i:s') }}
{% trans %}Stop{% endtrans %}
{% if session.start.format('Y-m-d') != session.stop.format('Y-m-d') %} {{ session.stop.format('Y-m-d H:i:s') }} {% else %} {{ session.stop.format('H:i:s') }} {% endif %}
{% trans %}Length{% endtrans %}
{{ session.length.format('H:i:s') }}
{% trans %}Locked{% endtrans %}
{% if session.locked is null %} {% trans %}None{% endtrans %} {% else %} {{ session.locked.format('Y-m-d H:i:s') }} {% endif %}
{% trans %}Created{% endtrans %}
{{ session.created.format('Y-m-d H:i:s') }}
{% trans %}Updated{% endtrans %}
{{ session.updated.format('Y-m-d H:i:s') }}

{% trans %}Weather{% endtrans %}

{% if session.rainrisk is not null %}
{% trans %}Rainrisk{% endtrans %}
{{ session.rainrisk }}
{% endif %} {% if session.rainfall is not null %}
{% trans %}Rainfall{% endtrans %}
{{ session.rainfall }}
{% endif %} {% if session.realfeel is not null %}
{% trans %}Realfeel{% endtrans %}
{{ session.realfeel }}
{% endif %} {% if session.realfeelmin is not null %}
{% trans %}Realfeel min{% endtrans %}
{{ session.realfeelmin }}
{% endif %} {% if session.realfeelmax is not null %}
{% trans %}Realfeel max{% endtrans %}
{{ session.realfeelmax }}
{% endif %} {% if session.temperature is not null %}
{% trans %}Temperature{% endtrans %}
{{ session.temperature }}
{% endif %} {% if session.temperaturemin is not null %}
{% trans %}Temperature min{% endtrans %}
{{ session.temperaturemin }}
{% endif %} {% if session.temperaturemax is not null %}
{% trans %}Temperature max{% endtrans %}
{{ session.temperaturemax }}
{% endif %}

{% trans %}Location{% endtrans %}

{# infos #}
{% trans %}Location{% endtrans %}
{{ session.location.title }}
{# location #}
{% trans %}Address{% endtrans %}
{{ session.location.address }} {{ session.location.zipcode }} {{ session.location.city }}
{% trans %}Maps{% endtrans %}
Google Maps
OpenStreetMap
{% trans %}Minimap{% endtrans %}
TODO: minimap
{{ include('@RapsysAir/form/_toolbox.html.twig') }}

{% trans %}Candidates{% endtrans %}

{% if session.applications is null %}
{% trans %}None{% endtrans %}
{% else %} {% for application in session.applications %}

{{ application.user.title }}

{% trans %}Score{% endtrans %}
{% if application.score is null %} {% trans %}None{% endtrans %} {% else %} {{ application.score }}
{% endif %}
{% trans %}Created{% endtrans %}
{{ application.created.format('Y-m-d H:i:s') }}
{% trans %}Updated{% endtrans %}
{{ application.updated.format('Y-m-d H:i:s') }}
{% trans %}Canceled{% endtrans %}
{% if application.canceled is null %} {% trans %}None{% endtrans %} {% else %} {{ application.canceled.format('Y-m-d H:i:s') }} {% endif %}
{% endfor %} {% endif %}
{% if locations is defined and locations %}

{% trans %}Locations{% endtrans %}

{% for id, title in locations %}

{{ title }}

{% endfor %}
{% endif %} {% endblock %}