render('ChillPersonBundle:Admin:indexAccompanyingCourse.html.twig'); } /** * @Route("/{_locale}/admin/household", name="chill_household_admin_index") */ public function indexHouseholdAdminAction() { return $this->render('ChillPersonBundle:Admin:indexHousehold.html.twig'); } /** * @Route("/{_locale}/admin/person", name="chill_person_admin_index") */ public function indexPersonAdminAction() { return $this->render('ChillPersonBundle:Admin:indexPerson.html.twig'); } /** * @Route("/{_locale}/admin/social-work", name="chill_social-work_admin_index") */ public function indexSocialWorkAdminAction() { return $this->render('ChillPersonBundle:Admin:indexSocialWork.html.twig'); } /** * @return \Symfony\Component\HttpFoundation\RedirectResponse */ public function redirectToAdminIndexAction() { return $this->redirectToRoute('chill_main_admin_central'); } }