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

{{ session.title }} {% if session.application.id is defined and session.application.id %} {{ session.application.user.by }} {% endif %} {{ session.location.at }}

{{ page.description }}

{% 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.snippet.class is defined and session.snippet.class %}
{% trans %}Class{% endtrans %}
{{ session.snippet.class|striptags|markdown_to_html }}
{% endif %} {% if session.snippet.contact is defined and session.snippet.contact %}
{% trans %}Contact{% endtrans %}
{{ 'Send a message to %pseudonym%'|trans({'%pseudonym%': session.application.user.title}) }}
{% endif %} {% if session.snippet.donate is defined and session.snippet.donate %}
{% trans %}Donate{% endtrans %}
{{ 'Donate to %pseudonym%'|trans({'%pseudonym%': session.application.user.title}) }}
{% endif %} {% if session.snippet.link is defined and session.snippet.link %}
{% trans %}Link{% endtrans %}
{{ 'Link to %pseudonym%'|trans({'%pseudonym%': session.application.user.title}) }}
{% endif %} {% if session.snippet.profile is defined and session.snippet.profile %}
{% trans %}Social network{% endtrans %}
{{ 'Consult %pseudonym% profile'|trans({'%pseudonym%': session.application.user.title}) }}
{% endif %}

{% trans %}Schedule{% endtrans %}

{% trans %}Date{% endtrans %}
{{ session.start|localizeddate('long', 'none') }}
{% trans %}Start{% endtrans %}
{{ session.start|localizeddate('none', 'medium') }}
{% trans %}Stop{% endtrans %}
{{ session.stop|localizeddate('none', 'medium') }}
{% trans %}Length{% endtrans %}
{{ session.length|localizeddate('none', 'short', null, null, 'HH:mm') }}
{% trans %}Slot{% endtrans %}
{{ session.slot.title }}
{% trans %}Locked{% endtrans %}
{% if session.locked is null %} {% trans %}None{% endtrans %} {% else %} {{ session.locked|localizeddate('long', 'medium') }} {% endif %}
{% trans %}Created{% endtrans %}
{{ session.created|localizeddate('long', 'medium') }}
{% trans %}Updated{% endtrans %}
{{ session.updated|localizeddate('long', 'medium') }}

{% 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|localizeddate('long', 'medium') }}
{% trans %}Updated{% endtrans %}
{{ application.updated|localizeddate('long', 'medium') }}
{% trans %}Canceled{% endtrans %}
{% if application.canceled is null %} {% trans %}None{% endtrans %} {% else %} {{ application.canceled|localizeddate('long', 'medium') }} {% endif %}
{% endfor %} {% endif %}
{{ include('@RapsysAir/default/_location.html.twig') }} {% endblock %}