1 #https://symfony.com/doc/current/routing.html#localized-routes-i18n
 
   2 #SCRUD: index, add, edit, delete, view
 
   7     controller: Rapsys\AirBundle\Controller\DefaultController::index
 
  14     controller: Rapsys\AirBundle\Controller\DefaultController::contact
 
  17 rapsys_air_regulation:
 
  21     controller: Rapsys\AirBundle\Controller\DefaultController::regulation
 
  24 rapsys_air_location_view:
 
  26         en: '/en/location/{id<\d+>}'
 
  27         fr: '/emplacement/{id<\d+>}'
 
  28     controller: Rapsys\AirBundle\Controller\LocationController::view
 
  31 rapsys_air_application_add:
 
  35     controller: Rapsys\AirBundle\Controller\ApplicationController::add
 
  38 rapsys_air_application_edit:
 
  40         en: '/en/application/{id<\d+>}'
 
  41         fr: '/reservation/{id<\d+>}'
 
  42     controller: Rapsys\AirBundle\Controller\ApplicationController::edit
 
  49     controller: Rapsys\AirBundle\Controller\SessionController::index
 
  52 rapsys_air_session_view:
 
  54         en: '/en/session/{id<\d+>}'
 
  55         fr: '/seance/{id<\d+>}'
 
  56     controller: Rapsys\AirBundle\Controller\SessionController::view
 
  63     controller: Rapsys\AirBundle\Controller\UserController::index
 
  68         en: '/en/user/{id<\d+>}'
 
  69         fr: '/utilisateur/{id<\d+>}'
 
  70     controller: Rapsys\AirBundle\Controller\UserController::view