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

diff --git a/Resources/views/default/index.html.twig b/Resources/views/default/index.html.twig
index 722b093..beb1508 100644
--- a/Resources/views/default/index.html.twig
+++ b/Resources/views/default/index.html.twig
@@ -2,8 +2,8 @@
 {% block content %}
 	<article id="dashboard">
 		<header>
-			<h2><a href="{{ path('rapsys_air') }}">{{ page.title }}</a></h2>
-			<p>{{ page.description }}</p>
+			<h2><a href="{{ path('rapsys_air') }}">{{ title }}</a></h2>
+			<p>{{ description }}</p>
 		</header>
 		<div class="panel">
 			{% if calendar is defined and calendar %}
@@ -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 %}