X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/1a9ca90c1776cc2c1d893b65a235c4ffea163208..a8f9e9a865f4efe50d7baf7f80da56741446f9de:/Resources/views/default/index.html.twig

diff --git a/Resources/views/default/index.html.twig b/Resources/views/default/index.html.twig
index 89719d9..d8ce55c 100644
--- a/Resources/views/default/index.html.twig
+++ b/Resources/views/default/index.html.twig
@@ -13,6 +13,10 @@
 								{% for session in day.sessions %}
 									<li class="{{ ['session']|merge(session.class)|join(' ') }}">
 										<a href="{{ path('rapsys_air_session_view', {'id': session.id}) }}" title="{{ session.applications|join('\n') }}">{{ session.title }}</a>
+										<span>
+											{% if session.weather is defined and session.weather %}<span title="{{ session.weathertitle }}">{{ session.weather }}</span>{% endif %}
+											<span title="{{ session.slottitle }}">{{ session.slot }}</span>
+										</span>
 									</li>
 								{% endfor %}
 							</ul>
@@ -27,13 +31,16 @@
 	</div>
 	{% if locations is defined and locations %}
 		<div class="panel location">
-			<div class="grid">
-				{% for id, title in locations %}
-					<section class="cell">
-						<h3><a href="{{ path('rapsys_air_location_view', {'id': id}) }}">{{ title }}</a></h3>
-					</section>
-				{% endfor %}
-			</div>
+			<section>
+				<h3>{% trans %}Locations{% endtrans %}</h3>
+				<div class="grid">
+					{% for id, title in locations %}
+						<section class="cell">
+							<h4><a href="{{ path('rapsys_air_location_view', {'id': id}) }}">{{ title }}</a></h4>
+						</section>
+					{% endfor %}
+				</div>
+			</section>
 		</div>
 	{% endif %}
 </section>