]> Raphaël G. Git Repositories - airbundle/commitdiff
Fix title
authorRaphaël Gertz <git@rapsys.eu>
Wed, 14 Oct 2020 02:19:45 +0000 (04:19 +0200)
committerRaphaël Gertz <git@rapsys.eu>
Wed, 14 Oct 2020 02:20:14 +0000 (04:20 +0200)
Fix route name
Move common template to toolbox

Resources/views/location/index.html.twig

index ca5143117dc7cc65461a7faf3330cab38e7b2e8a..2ecfaa76e0d16ffab9cfa189447ab0ec114e4904 100644 (file)
@@ -1,7 +1,7 @@
 {% extends '@RapsysAir/body.html.twig' %}
 {% block content %}
-<section id="dashboard">
-       <h2>{% trans %}Dashboard{% endtrans %}</h2>
+<section id="location">
+       <h2>{% trans %}Locations{% endtrans %}</h2>
        <section class="panel">
                {% if calendar is defined and calendar %}
                        <table class="grid">
@@ -14,7 +14,7 @@
                                                                        <ul>
                                                                                {% for session in day.sessions %}
                                                                                        <li class="{{ ['session']|merge(session.class)|join(' ') }}">
-                                                                                               <a href="{{ path('rapsys_air_session', {'id': session.id}) }}" title="{{ session.title }}">{{ session.title }}</a>
+                                                                                               <a href="{{ path('rapsys_air_session_view', {'id': session.id}) }}" title="{{ session.title }}">{{ session.title }}</a>
                                                                                        </li>
                                                                                {% endfor %}
                                                                        </ul>
                                </tbody>
                        </table>
                {% endif %}
-               {# Display application or login form #}
-               {% if is_granted('ROLE_GUEST') %}
-                       <section>
-                               {{ include('@RapsysAir/form/_application.html.twig') }}
-                       </section>
-               {% elseif not is_granted('IS_AUTHENTICATED_REMEMBERED') %}
-                       <section>
-                               {{ include('@RapsysAir/form/_login.html.twig') }}
-                       </section>
-               {% endif %}
+               {{ include('@RapsysAir/form/_toolbox.html.twig') }}
        </section>
        {# dump(calendar) #}
 </section>