templates/default/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}PIMMS - Médiation Transport{% endblock %}
  3. {% block body %}
  4. <div class="columns small-12 medium-6">
  5.     <h1><center>Portail applications</center></h1>
  6.     {% if app.user %}
  7.         {% if is_granted('ROLE_ADMIN') %}
  8.             <a class="button expanded" href="/admin-mt" title="Accéder au panneau d'administration">Administration transports</a>
  9.         {% endif %}
  10.         {% if is_granted('ROLE_KEOLIS') or is_granted('ROLE_ADMIN') %}
  11.             <a class="button expanded" href="{{ path('keolis') }}" title="Accéder au tableau de bord">Tableau de bord{% if is_granted('ROLE_ADMIN') %} KEOLIS{% endif %}</a>
  12.         {% endif %}
  13.         {% if is_granted('ROLE_SNCF') or is_granted('ROLE_ADMIN') %}
  14.             <a class="button expanded" href="{{ path('sncf') }}" title="Accéder au tableau de bord">Tableau de bord{% if is_granted('ROLE_ADMIN') %} SNCF{% endif %}</a>
  15.         {% endif %}
  16.         {% if is_granted('ROLE_ADMIN') %}
  17.             <a class="button expanded" href="/admin-v2" title="Accéder au tableau de bord">Administration CCAS et Enquêtes</a>
  18.         {% endif %}
  19.     {% else %}
  20.         <a class="button expanded" href="{{ path('fos_user_security_login') }}" title="Connexion">Connexion</a>
  21.     {% endif %}
  22. </div>
  23. {% endblock %}