diff --git a/core/lib/Thelia/Config/Resources/routing/admin.xml b/core/lib/Thelia/Config/Resources/routing/admin.xml
index af7b7e445..e09d24a90 100755
--- a/core/lib/Thelia/Config/Resources/routing/admin.xml
+++ b/core/lib/Thelia/Config/Resources/routing/admin.xml
@@ -487,6 +487,15 @@
+
+
+
+ Thelia\Controller\Admin\ModuleController::indexAction
+
+
+
+
+
diff --git a/core/lib/Thelia/Controller/Admin/ModuleController.php b/core/lib/Thelia/Controller/Admin/ModuleController.php
new file mode 100644
index 000000000..fe794abf9
--- /dev/null
+++ b/core/lib/Thelia/Controller/Admin/ModuleController.php
@@ -0,0 +1,46 @@
+. */
+/* */
+/*************************************************************************************/
+
+namespace Thelia\Controller\Admin;
+
+/**
+ * Class ModuleController
+ * @package Thelia\Controller\Admin
+ * @author Manuel Raynaud
+ */
+class ModuleController extends BaseAdminController
+{
+ public function indexAction()
+ {
+ if (null !== $response = $this->checkAuth("admin.module.view")) return $response;
+ return $this->render("modules", array("display_module" => 20));
+ }
+
+ public function updateAction($module_id)
+ {
+
+ return $this->render("module-edit", array(
+ "module_id" => $module_id
+ ));
+ }
+}
\ No newline at end of file
diff --git a/templates/admin/default/modules.html b/templates/admin/default/modules.html
new file mode 100644
index 000000000..e69de29bb