- </div>
- <div class="row">
- <dl class="cell">
- <dt><h3>{% trans %}Attributed to{% endtrans %}</h3></dt>
- {% if session.application is null %}
- <dd>{% trans %}None{% endtrans %}</dd>
- {% else %}
- <dd><a href="{{ path('rapsys_air_user_view', {'id': session.application.user.id}) }}">{{ session.application.user.title }}</a></dd>
- {% endif %}
+ </section>
+ <section class="cell">
+ <h3>{% trans %}Weather{% endtrans %}</h3>
+ {% if session.rainrisk is not null %}
+ <dl>
+ <dt>{% trans %}Rainrisk{% endtrans %}</dt>
+ <dd>{{ session.rainrisk }}</dd>
+ </dl>
+ {% endif %}
+ {% if session.rainfall is not null %}
+ <dl>
+ <dt>{% trans %}Rainfall{% endtrans %}</dt>
+ <dd>{{ session.rainfall }}</dd>
+ </dl>
+ {% endif %}
+ {% if session.realfeel is not null %}
+ <dl>
+ <dt>{% trans %}Realfeel{% endtrans %}</dt>
+ <dd>{{ session.realfeel }}</dd>
+ </dl>
+ {% endif %}
+ {% if session.realfeelmin is not null %}
+ <dl>
+ <dt>{% trans %}Realfeel min{% endtrans %}</dt>
+ <dd>{{ session.realfeelmin }}</dd>
+ </dl>
+ {% endif %}
+ {% if session.realfeelmax is not null %}
+ <dl>
+ <dt>{% trans %}Realfeel max{% endtrans %}</dt>
+ <dd>{{ session.realfeelmax }}</dd>
+ </dl>
+ {% endif %}
+ {% if session.temperature is not null %}
+ <dl>
+ <dt>{% trans %}Temperature{% endtrans %}</dt>
+ <dd>{{ session.temperature }}</dd>
+ </dl>
+ {% endif %}
+ {% if session.temperaturemin is not null %}
+ <dl>
+ <dt>{% trans %}Temperature min{% endtrans %}</dt>
+ <dd>{{ session.temperaturemin }}</dd>
+ </dl>
+ {% endif %}
+ {% if session.temperaturemax is not null %}
+ <dl>
+ <dt>{% trans %}Temperature max{% endtrans %}</dt>
+ <dd>{{ session.temperaturemax }}</dd>
+ </dl>
+ {% endif %}
+ </section>
+ <section class="cell">
+ <h3>{% trans %}Location{% endtrans %}</h3>
+ <dl>
+ {# infos #}
+ <dt>{% trans %}Location{% endtrans %}</dt>
+ <dd><a href="{{ path('rapsys_air_location_view', {'id': session.location.id}) }}">{{ session.location.title }}</a></dd>