diff --git a/tms/src/Controller/LibrairieController.php b/tms/src/Controller/LibrairieController.php
new file mode 100644
index 0000000000000000000000000000000000000000..91fc071396ddc1ef8c5157ae17bcc778a6159848
--- /dev/null
+++ b/tms/src/Controller/LibrairieController.php
@@ -0,0 +1,29 @@
+<?php
+
+
+namespace App\Controller;
+use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
+use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
+use Symfony\Component\HttpFoundation\Response;
+use App\Entity\Librairie;
+
+
+class LibrairieController extends  AbstractController
+{
+    /**
+     * @Route("/listLibraries")
+     */
+    public function listLibraries()
+    {
+
+        $librairies = $this->getDoctrine()
+            ->getRepository(Librairie::class)
+            ->findAll();
+
+
+
+        return $this->render('librairie/main.html.twig', array('librairies' => $librairies));
+
+
+    }
+}
\ No newline at end of file
diff --git a/tms/src/Controller/TapeController.php b/tms/src/Controller/TapeController.php
index 14604505203ecba44c7f6a80e6c550d664552b1b..89434ed7fa419e5187a1652893a47cd8aad6186e 100644
--- a/tms/src/Controller/TapeController.php
+++ b/tms/src/Controller/TapeController.php
@@ -9,7 +9,7 @@ use Symfony\Component\HttpFoundation\Response;
 class TapeController extends AbstractController
 {
      /**
-      * @Route("/list")
+      * @Route("/listTapes")
      */
     public function listTapes()
     {
diff --git a/tms/templates/base.html.twig b/tms/templates/base.html.twig
index ff7f574fda00e10d6646a5bb1a26601de8e40b20..524668b23c382f84a76a078fda4fa4f70e43ebc7 100644
--- a/tms/templates/base.html.twig
+++ b/tms/templates/base.html.twig
@@ -19,68 +19,8 @@
 <!-- Page Content -->
 <div class="container">
 
-    <!-- Heading Row -->
-    <div class="row align-items-center my-5">
-        <div class="col-lg-7">
-            <img class="img-fluid rounded m-3" src="{{ asset('build/images/tapes.fafb7860.jpg') }}" alt="">
-        </div>
-        <!-- /.col-lg-8 -->
-        <div class="col-lg-5">
-            <h1 class="text-center font-weight-light">TMS</h1>
-            <p> <ul>
-                <li>Gestion des stocks de bandes</li>
-                <li>Gestion de librairies de volumes (robots, racks...)</li>
-                <li>Gestion des opérations sur les volumes (import, export, déplacement de librairies, suppression,...)</li>
-                <li>Interroger et consulter l’ensemble des informations suivant des critères de sélection.</li>
-            </ul></p>
-            <div class="text-center"><a class="btn btn-primary" href="https://gitlab.in2p3.fr/cc-in2p3-dev/TMS/blob/master/README.md">Détails</a></div>
-        </div>
-        <!-- /.col-md-4 -->
-    </div>
-    <!-- /.row -->
-
-
-    <!-- Content Row -->
-    <div class="row">
-        <div class="col-md-4 mb-5">
-            <div class="card h-100">
-                <div class="card-body">
-                    <h2 class="card-title">Tapes</h2>
-                    <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rem magni quas ex numquam, maxime minus quam molestias corporis quod, ea minima accusamus.</p>
-                </div>
-                <div class="card-footer">
-                    <a href="#" class="btn btn-primary btn-sm">More Info</a>
-                </div>
-            </div>
-        </div>
-        <!-- /.col-md-4 -->
-        <div class="col-md-4 mb-5">
-            <div class="card h-100">
-                <div class="card-body">
-                    <h2 class="card-title">Commandes</h2>
-                    <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod tenetur ex natus at dolorem enim! Nesciunt pariatur voluptatem sunt quam eaque, vel, non in id dolore voluptates quos eligendi labore.</p>
-                </div>
-                <div class="card-footer">
-                    <a href="#" class="btn btn-primary btn-sm">More Info</a>
-                </div>
-            </div>
-        </div>
-        <!-- /.col-md-4 -->
-        <div class="col-md-4 mb-5">
-            <div class="card h-100">
-                <div class="card-body">
-                    <h2 class="card-title">Drive</h2>
-                    <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rem magni quas ex numquam, maxime minus quam molestias corporis quod, ea minima accusamus.</p>
-                </div>
-                <div class="card-footer">
-                    <a href="#" class="btn btn-primary btn-sm">More Info</a>
-                </div>
-            </div>
-        </div>
-        <!-- /.col-md-4 -->
-
-    </div>
-    <!-- /.row -->
+
+    {% block container %}{% endblock %}
 
 </div>
 <!-- /.container -->
diff --git a/tms/templates/default/home.html.twig b/tms/templates/default/home.html.twig
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..09b169765afd080ad82d00f5e0afe020bf5850af 100644
--- a/tms/templates/default/home.html.twig
+++ b/tms/templates/default/home.html.twig
@@ -0,0 +1,65 @@
+{% extends 'base.html.twig' %}
+
+{% block container %}
+<!-- Heading Row -->
+<div class="row align-items-center my-5">
+    <div class="col-lg-7">
+        <img class="img-fluid rounded m-3" src="{{ asset('build/images/tapes.fafb7860.jpg') }}" alt="">
+    </div>
+    <!-- /.col-lg-8 -->
+    <div class="col-lg-5">
+        <h1 class="text-center font-weight-light">TMS</h1>
+        <p> <ul>
+            <li>Gestion des stocks de bandes</li>
+            <li>Gestion de librairies de volumes (robots, racks...)</li>
+            <li>Gestion des opérations sur les volumes (import, export, déplacement de librairies, suppression,...)</li>
+            <li>Interroger et consulter l’ensemble des informations suivant des critères de sélection.</li>
+        </ul></p>
+        <div class="text-center"><a class="btn btn-primary" href="https://gitlab.in2p3.fr/cc-in2p3-dev/TMS/blob/master/README.md">Détails</a></div>
+    </div>
+    <!-- /.col-md-4 -->
+</div>
+<!-- /.row -->
+
+
+<!-- Content Row -->
+<div class="row">
+    <div class="col-md-4 mb-5">
+        <div class="card h-100">
+            <div class="card-body">
+                <h2 class="card-title">Tapes</h2>
+                <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rem magni quas ex numquam, maxime minus quam molestias corporis quod, ea minima accusamus.</p>
+            </div>
+            <div class="card-footer">
+                <a href="#" class="btn btn-primary btn-sm">More Info</a>
+            </div>
+        </div>
+    </div>
+    <!-- /.col-md-4 -->
+    <div class="col-md-4 mb-5">
+        <div class="card h-100">
+            <div class="card-body">
+                <h2 class="card-title">Commandes</h2>
+                <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod tenetur ex natus at dolorem enim! Nesciunt pariatur voluptatem sunt quam eaque, vel, non in id dolore voluptates quos eligendi labore.</p>
+            </div>
+            <div class="card-footer">
+                <a href="#" class="btn btn-primary btn-sm">More Info</a>
+            </div>
+        </div>
+    </div>
+    <!-- /.col-md-4 -->
+    <div class="col-md-4 mb-5">
+        <div class="card h-100">
+            <div class="card-body">
+                <h2 class="card-title">Drive</h2>
+                <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rem magni quas ex numquam, maxime minus quam molestias corporis quod, ea minima accusamus.</p>
+            </div>
+            <div class="card-footer">
+                <a href="#" class="btn btn-primary btn-sm">More Info</a>
+            </div>
+        </div>
+    </div>
+    <!-- /.col-md-4 -->
+
+</div>
+{% endblock %}
\ No newline at end of file
diff --git a/tms/templates/librairie/main.html.twig b/tms/templates/librairie/main.html.twig
new file mode 100644
index 0000000000000000000000000000000000000000..0e9014aacd08154a5bdfaddec30582eb93d3db7c
--- /dev/null
+++ b/tms/templates/librairie/main.html.twig
@@ -0,0 +1,44 @@
+{% extends 'base.html.twig' %}
+
+
+
+
+
+{% block container %}
+
+    <div class="container">
+        <div class="col-12">
+            <table class="dataTable">
+
+                <thead>
+                <tr>
+                    <th>Nom</th>
+                    <th>Description</th>
+                    <th>Fabricant</th>
+                    <th>Nombre de Slots</th>
+
+                </tr>
+                </thead>
+                <tbody>
+                {% for librairy in librairies %}
+                    <tr>
+                        <td>{{ dump(librairy) }}</td>
+{#                        <td>{{ librairy['nom'] }}</td>#}
+{#                        <td>{{ librairy.type }}</td>#}
+{#                        <td>{{ librairy.fabricant }}</td>#}
+{#                        <td>{{ librairy.nbslots }}</td>#}
+                    </tr>
+                {% endfor %}
+
+                </tbody>
+
+
+            </table>
+
+
+        </div>
+    </div>
+
+
+
+{% endblock %}
diff --git a/tms/var/cache/dev/App_KernelDevDebugContainer.php b/tms/var/cache/dev/App_KernelDevDebugContainer.php
index 863912a4c738aa0335a34de107370c01bbd7d457..30e4384c25e0c5e360aca5bbf6569cac9065f0a9 100644
--- a/tms/var/cache/dev/App_KernelDevDebugContainer.php
+++ b/tms/var/cache/dev/App_KernelDevDebugContainer.php
@@ -2,20 +2,20 @@
 
 // This file has been auto-generated by the Symfony Dependency Injection Component for internal use.
 
-if (\class_exists(\ContainerUJfILFK\App_KernelDevDebugContainer::class, false)) {
+if (\class_exists(\ContainerEXDxpGV\App_KernelDevDebugContainer::class, false)) {
     // no-op
-} elseif (!include __DIR__.'/ContainerUJfILFK/App_KernelDevDebugContainer.php') {
-    touch(__DIR__.'/ContainerUJfILFK.legacy');
+} elseif (!include __DIR__.'/ContainerEXDxpGV/App_KernelDevDebugContainer.php') {
+    touch(__DIR__.'/ContainerEXDxpGV.legacy');
 
     return;
 }
 
 if (!\class_exists(App_KernelDevDebugContainer::class, false)) {
-    \class_alias(\ContainerUJfILFK\App_KernelDevDebugContainer::class, App_KernelDevDebugContainer::class, false);
+    \class_alias(\ContainerEXDxpGV\App_KernelDevDebugContainer::class, App_KernelDevDebugContainer::class, false);
 }
 
-return new \ContainerUJfILFK\App_KernelDevDebugContainer([
-    'container.build_hash' => 'UJfILFK',
-    'container.build_id' => '4fd9165b',
-    'container.build_time' => 1580893013,
-], __DIR__.\DIRECTORY_SEPARATOR.'ContainerUJfILFK');
+return new \ContainerEXDxpGV\App_KernelDevDebugContainer([
+    'container.build_hash' => 'EXDxpGV',
+    'container.build_id' => 'e22c28de',
+    'container.build_time' => 1580919093,
+], __DIR__.\DIRECTORY_SEPARATOR.'ContainerEXDxpGV');
diff --git a/tms/var/cache/dev/App_KernelDevDebugContainer.php.meta b/tms/var/cache/dev/App_KernelDevDebugContainer.php.meta
index e58d8309aa4f8be90be359d8463f407ad12b9a8d..0c1662d11807a467b7d8efadf3877c76ed4dbaad 100644
Binary files a/tms/var/cache/dev/App_KernelDevDebugContainer.php.meta and b/tms/var/cache/dev/App_KernelDevDebugContainer.php.meta differ
diff --git a/tms/var/cache/dev/App_KernelDevDebugContainer.preload.php b/tms/var/cache/dev/App_KernelDevDebugContainer.preload.php
index cca8aded81e0e3f9416079f9b6d6f87dfa4b1720..6ce557bda81f4b55e911e80dbf68b7e5f8187bed 100644
--- a/tms/var/cache/dev/App_KernelDevDebugContainer.preload.php
+++ b/tms/var/cache/dev/App_KernelDevDebugContainer.preload.php
@@ -6,7 +6,7 @@
 use Symfony\Component\DependencyInjection\Dumper\Preloader;
 
 require dirname(__DIR__, 3).'/vendor/autoload.php';
-require __DIR__.'/ContainerUJfILFK/App_KernelDevDebugContainer.php';
+require __DIR__.'/ContainerEXDxpGV/App_KernelDevDebugContainer.php';
 
 $classes = [];
 $classes[] = 'App\Kernel';
diff --git a/tms/var/cache/dev/App_KernelDevDebugContainer.xml b/tms/var/cache/dev/App_KernelDevDebugContainer.xml
index 4b8bb0a13443f9e809b6a13237242ca663aa4b64..fe3ab6c8cb4a72ffb43d4d6cf39dda1bcc9c511b 100644
--- a/tms/var/cache/dev/App_KernelDevDebugContainer.xml
+++ b/tms/var/cache/dev/App_KernelDevDebugContainer.xml
@@ -317,6 +317,13 @@
         <argument type="service" id=".service_locator.pNNo5z3.App\Controller\DefaultController"/>
       </call>
     </service>
+    <service id="App\Controller\LibrairieController" class="App\Controller\LibrairieController" public="true" autowire="true" autoconfigure="true">
+      <tag name="controller.service_arguments"/>
+      <tag name="container.service_subscriber"/>
+      <call method="setContainer">
+        <argument type="service" id=".service_locator.pNNo5z3.App\Controller\LibrairieController"/>
+      </call>
+    </service>
     <service id="App\Controller\TapeController" class="App\Controller\TapeController" public="true" autowire="true" autoconfigure="true">
       <tag name="controller.service_arguments"/>
       <tag name="container.service_subscriber"/>
@@ -2380,14 +2387,6 @@
         </argument>
         <argument>2048</argument>
       </call>
-      <call method="addListener">
-        <argument>console.command</argument>
-        <argument type="collection">
-          <argument type="service" id="debug.debug_handlers_listener"/>
-          <argument>configure</argument>
-        </argument>
-        <argument>2048</argument>
-      </call>
       <call method="addListener">
         <argument>kernel.request</argument>
         <argument type="collection">
@@ -4630,6 +4629,9 @@
     <service id=".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\DefaultController" class="App\Controller\DefaultController" autowire="true" abstract="true"/>
     <service id=".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\DefaultController" class="App\Controller\DefaultController" autowire="true" abstract="true"/>
     <service id=".abstract.instanceof.App\Controller\DefaultController" class="App\Controller\DefaultController" autowire="true" autoconfigure="true" abstract="true"/>
+    <service id=".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\LibrairieController" class="App\Controller\LibrairieController" autowire="true" abstract="true"/>
+    <service id=".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\LibrairieController" class="App\Controller\LibrairieController" autowire="true" abstract="true"/>
+    <service id=".abstract.instanceof.App\Controller\LibrairieController" class="App\Controller\LibrairieController" autowire="true" autoconfigure="true" abstract="true"/>
     <service id=".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\TapeController" class="App\Controller\TapeController" autowire="true" abstract="true"/>
     <service id=".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\TapeController" class="App\Controller\TapeController" autowire="true" abstract="true"/>
     <service id=".abstract.instanceof.App\Controller\TapeController" class="App\Controller\TapeController" autowire="true" autoconfigure="true" abstract="true"/>
@@ -5101,6 +5103,12 @@
       <argument type="service" id="service_container"/>
       <factory service=".service_locator.pNNo5z3" method="withContext"/>
     </service>
+    <service id=".service_locator.pNNo5z3.App\Controller\LibrairieController" class="Symfony\Component\DependencyInjection\ServiceLocator" public="false">
+      <tag name="container.service_locator_context" id="App\Controller\LibrairieController"/>
+      <argument>App\Controller\LibrairieController</argument>
+      <argument type="service" id="service_container"/>
+      <factory service=".service_locator.pNNo5z3" method="withContext"/>
+    </service>
     <service id=".service_locator.pNNo5z3.App\Controller\TapeController" class="Symfony\Component\DependencyInjection\ServiceLocator" public="false">
       <tag name="container.service_locator_context" id="App\Controller\TapeController"/>
       <argument>App\Controller\TapeController</argument>
diff --git a/tms/var/cache/dev/App_KernelDevDebugContainer.xml.meta b/tms/var/cache/dev/App_KernelDevDebugContainer.xml.meta
index e58d8309aa4f8be90be359d8463f407ad12b9a8d..0c1662d11807a467b7d8efadf3877c76ed4dbaad 100644
Binary files a/tms/var/cache/dev/App_KernelDevDebugContainer.xml.meta and b/tms/var/cache/dev/App_KernelDevDebugContainer.xml.meta differ
diff --git a/tms/var/cache/dev/App_KernelDevDebugContainerCompiler.log b/tms/var/cache/dev/App_KernelDevDebugContainerCompiler.log
index 31efddf2ccd09d296fbb7339244047fdba112f0c..07ed0ddcbff1e254b4606ce6ccefd099922883a8 100644
--- a/tms/var/cache/dev/App_KernelDevDebugContainerCompiler.log
+++ b/tms/var/cache/dev/App_KernelDevDebugContainerCompiler.log
@@ -1,6 +1,9 @@
 Symfony\Component\DependencyInjection\Compiler\ResolveChildDefinitionsPass: Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\DefaultController" (parent: .abstract.instanceof.App\Controller\DefaultController).
 Symfony\Component\DependencyInjection\Compiler\ResolveChildDefinitionsPass: Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\DefaultController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\DefaultController).
 Symfony\Component\DependencyInjection\Compiler\ResolveChildDefinitionsPass: Resolving inheritance for "App\Controller\DefaultController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\DefaultController).
+Symfony\Component\DependencyInjection\Compiler\ResolveChildDefinitionsPass: Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\LibrairieController" (parent: .abstract.instanceof.App\Controller\LibrairieController).
+Symfony\Component\DependencyInjection\Compiler\ResolveChildDefinitionsPass: Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\LibrairieController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\LibrairieController).
+Symfony\Component\DependencyInjection\Compiler\ResolveChildDefinitionsPass: Resolving inheritance for "App\Controller\LibrairieController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\LibrairieController).
 Symfony\Component\DependencyInjection\Compiler\ResolveChildDefinitionsPass: Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\TapeController" (parent: .abstract.instanceof.App\Controller\TapeController).
 Symfony\Component\DependencyInjection\Compiler\ResolveChildDefinitionsPass: Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\TapeController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\TapeController).
 Symfony\Component\DependencyInjection\Compiler\ResolveChildDefinitionsPass: Resolving inheritance for "App\Controller\TapeController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\TapeController).
@@ -345,6 +348,9 @@ Symfony\Component\DependencyInjection\Compiler\RemoveAbstractDefinitionsPass: Re
 Symfony\Component\DependencyInjection\Compiler\RemoveAbstractDefinitionsPass: Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\DefaultController"; reason: abstract.
 Symfony\Component\DependencyInjection\Compiler\RemoveAbstractDefinitionsPass: Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\DefaultController"; reason: abstract.
 Symfony\Component\DependencyInjection\Compiler\RemoveAbstractDefinitionsPass: Removed service ".abstract.instanceof.App\Controller\DefaultController"; reason: abstract.
+Symfony\Component\DependencyInjection\Compiler\RemoveAbstractDefinitionsPass: Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\LibrairieController"; reason: abstract.
+Symfony\Component\DependencyInjection\Compiler\RemoveAbstractDefinitionsPass: Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\LibrairieController"; reason: abstract.
+Symfony\Component\DependencyInjection\Compiler\RemoveAbstractDefinitionsPass: Removed service ".abstract.instanceof.App\Controller\LibrairieController"; reason: abstract.
 Symfony\Component\DependencyInjection\Compiler\RemoveAbstractDefinitionsPass: Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\TapeController"; reason: abstract.
 Symfony\Component\DependencyInjection\Compiler\RemoveAbstractDefinitionsPass: Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\TapeController"; reason: abstract.
 Symfony\Component\DependencyInjection\Compiler\RemoveAbstractDefinitionsPass: Removed service ".abstract.instanceof.App\Controller\TapeController"; reason: abstract.
@@ -427,6 +433,7 @@ Symfony\Component\DependencyInjection\Compiler\RemoveUnusedDefinitionsPass: Remo
 Symfony\Component\DependencyInjection\Compiler\RemoveUnusedDefinitionsPass: Removed service ".service_locator.saJSzyL"; reason: unused.
 Symfony\Component\DependencyInjection\Compiler\RemoveUnusedDefinitionsPass: Removed service ".service_locator.6zQlgQt"; reason: unused.
 Symfony\Component\DependencyInjection\Compiler\InlineServiceDefinitionsPass: Inlined service ".service_locator.pNNo5z3.App\Controller\DefaultController" to "App\Controller\DefaultController".
+Symfony\Component\DependencyInjection\Compiler\InlineServiceDefinitionsPass: Inlined service ".service_locator.pNNo5z3.App\Controller\LibrairieController" to "App\Controller\LibrairieController".
 Symfony\Component\DependencyInjection\Compiler\InlineServiceDefinitionsPass: Inlined service ".service_locator.pNNo5z3.App\Controller\TapeController" to "App\Controller\TapeController".
 Symfony\Component\DependencyInjection\Compiler\InlineServiceDefinitionsPass: Inlined service "error_handler.error_renderer.serializer" to "error_controller".
 Symfony\Component\DependencyInjection\Compiler\InlineServiceDefinitionsPass: Inlined service "debug.controller_resolver" to "http_kernel".
diff --git a/tms/var/cache/dev/url_generating_routes.php b/tms/var/cache/dev/url_generating_routes.php
index 7a751bc85ac0b4471017ee986cbbc812b7f28d66..9cbfd4486c882e54edad68f487c83c8cbbccdb08 100644
--- a/tms/var/cache/dev/url_generating_routes.php
+++ b/tms/var/cache/dev/url_generating_routes.php
@@ -16,5 +16,6 @@ return [
     '_profiler_exception' => [['token'], ['_controller' => 'web_profiler.controller.exception_panel::body'], [], [['text', '/exception'], ['variable', '/', '[^/]++', 'token', true], ['text', '/_profiler']], [], []],
     '_profiler_exception_css' => [['token'], ['_controller' => 'web_profiler.controller.exception_panel::stylesheet'], [], [['text', '/exception.css'], ['variable', '/', '[^/]++', 'token', true], ['text', '/_profiler']], [], []],
     'app_default_homepage' => [[], ['_controller' => 'App\\Controller\\DefaultController::homePage'], [], [['text', '/']], [], []],
-    'app_tape_listtapes' => [[], ['_controller' => 'App\\Controller\\TapeController::listTapes'], [], [['text', '/list']], [], []],
+    'app_librairie_listlibraries' => [[], ['_controller' => 'App\\Controller\\LibrairieController::listLibraries'], [], [['text', '/listLibraries']], [], []],
+    'app_tape_listtapes' => [[], ['_controller' => 'App\\Controller\\TapeController::listTapes'], [], [['text', '/listTapes']], [], []],
 ];
diff --git a/tms/var/cache/dev/url_generating_routes.php.meta b/tms/var/cache/dev/url_generating_routes.php.meta
index 64e1a09622cfa046dc85bb5c0262cc14879e0901..f99b49f8c68e122688ec4820023d9b8a33e973e6 100644
Binary files a/tms/var/cache/dev/url_generating_routes.php.meta and b/tms/var/cache/dev/url_generating_routes.php.meta differ
diff --git a/tms/var/cache/dev/url_matching_routes.php b/tms/var/cache/dev/url_matching_routes.php
index ddb4ae6eb8650e2875106d0403bd4a8bf201d9cb..4a0d9db3c01590a79d5e17b5f0ebe11e01888e1b 100644
--- a/tms/var/cache/dev/url_matching_routes.php
+++ b/tms/var/cache/dev/url_matching_routes.php
@@ -14,7 +14,8 @@ return [
         '/_profiler/phpinfo' => [[['_route' => '_profiler_phpinfo', '_controller' => 'web_profiler.controller.profiler::phpinfoAction'], null, null, null, false, false, null]],
         '/_profiler/open' => [[['_route' => '_profiler_open_file', '_controller' => 'web_profiler.controller.profiler::openAction'], null, null, null, false, false, null]],
         '/' => [[['_route' => 'app_default_homepage', '_controller' => 'App\\Controller\\DefaultController::homePage'], null, null, null, false, false, null]],
-        '/list' => [[['_route' => 'app_tape_listtapes', '_controller' => 'App\\Controller\\TapeController::listTapes'], null, null, null, false, false, null]],
+        '/listLibraries' => [[['_route' => 'app_librairie_listlibraries', '_controller' => 'App\\Controller\\LibrairieController::listLibraries'], null, null, null, false, false, null]],
+        '/listTapes' => [[['_route' => 'app_tape_listtapes', '_controller' => 'App\\Controller\\TapeController::listTapes'], null, null, null, false, false, null]],
     ],
     [ // $regexpList
         0 => '{^(?'
diff --git a/tms/var/cache/dev/url_matching_routes.php.meta b/tms/var/cache/dev/url_matching_routes.php.meta
index 64e1a09622cfa046dc85bb5c0262cc14879e0901..f99b49f8c68e122688ec4820023d9b8a33e973e6 100644
Binary files a/tms/var/cache/dev/url_matching_routes.php.meta and b/tms/var/cache/dev/url_matching_routes.php.meta differ