]> Raphaël G. Git Repositories - airbundle/blobdiff - Resources/views/default/index.html.twig
Swith to new session structure
[airbundle] / Resources / views / default / index.html.twig
index 722b0931e50893e3c3f79930085b0734897d7133..beb150886b308cf5c64d86e00d2d01457e7ead8d 100644 (file)
@@ -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 %}
                                                                                                        {% 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 %}