X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/ed8b870767ae4e3ca8af97e90a2d0fb0df5f7181..22509e0a4cfeb5125196242104c8c4b562286e33:/Resources/views/default/index.html.twig

diff --git a/Resources/views/default/index.html.twig b/Resources/views/default/index.html.twig
index 5ecb897..beb1508 100644
--- a/Resources/views/default/index.html.twig
+++ b/Resources/views/default/index.html.twig
@@ -2,7 +2,7 @@
 {% block content %}
 	<article id="dashboard">
 		<header>
-			<h2><a href="{{ path('rapsys_air') }}">{{ section }}</a></h2>
+			<h2><a href="{{ path('rapsys_air') }}">{{ title }}</a></h2>
 			<p>{{ description }}</p>
 		</header>
 		<div class="panel">
@@ -15,8 +15,8 @@
 								<ul>
 									{% for session in day.sessions %}
 										<li class="{{ session.class|join(' ') }}">
-											<a href="{{ path('rapsys_air_session_view', {'id': session.id}) }}" title="{{ session.applications|join('\n') }}">
-												<span>{{ session.start|localizeddate('none', 'short') }}</span>
+											<a href="{{ session.link }}" title="{{ session.applications|join('\n') }}">
+												<span>{{ session.start|intldate('none', 'short') }}</span>
 												<span class="reducible">{{ session.location }}</span>
 												<span class="info">
 													{% if session.weather is defined and session.weather %}
@@ -24,9 +24,11 @@
 													{% endif %}
 													<span title="{{ session.slottitle }}">{{ session.slot }}</span>
 												</span>
+												<span>{{ session.stop|intldate('none', 'short') }}</span>
 												{% if session.pseudonym is defined and session.pseudonym %}
-													<span class="reducible pseudonym">{{ session.pseudonym }}</span>
+													<span class="reducible{% if session.rate is not defined and session.hat is not defined %} pseudonym{% endif %}">{{ session.pseudonym }}</span>
 												{% endif %}
+												{% if session.rate is defined %}<span class="info">{{ session.rate }} {% if session.hat is defined and session.hat %}🎩{% else %}€{% endif %}</span>{% endif %}
 											</a>
 										</li>
 									{% endfor %}