improve ux in admin configuration interface

This commit is contained in:
2021-02-06 13:51:46 +01:00
parent 5c9e88784f
commit a1fc070bf7
11 changed files with 76 additions and 17 deletions

View File

@@ -18,7 +18,14 @@ class AdminController extends AbstractController
*/
public function indexAction($_locale)
{
return $this->render('ChillPersonBundle:Admin:index.html.twig', []);
return $this->render('ChillPersonBundle:Admin:layout.html.twig', []);
}
/**
* @return \Symfony\Component\HttpFoundation\RedirectResponse
*/
public function redirectToAdminIndexAction()
{
return $this->redirectToRoute('chill_main_admin_central');
}
}