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