Update path to twig template with new syntax

This commit is contained in:
2023-07-28 12:16:50 +02:00
parent 55b8502896
commit e839b03cc9
111 changed files with 220 additions and 223 deletions

View File

@@ -24,7 +24,7 @@ class AdminController extends AbstractController
*/
public function indexAccompanyingCourseAdminAction()
{
return $this->render('ChillPersonBundle:Admin:indexAccompanyingCourse.html.twig');
return $this->render('@ChillPerson/Admin/indexAccompanyingCourse.html.twig');
}
/**
@@ -32,7 +32,7 @@ class AdminController extends AbstractController
*/
public function indexHouseholdAdminAction()
{
return $this->render('ChillPersonBundle:Admin:indexHousehold.html.twig');
return $this->render('@ChillPerson/Admin/indexHousehold.html.twig');
}
/**
@@ -40,7 +40,7 @@ class AdminController extends AbstractController
*/
public function indexPersonAdminAction()
{
return $this->render('ChillPersonBundle:Admin:indexPerson.html.twig');
return $this->render('@ChillPerson/Admin/indexPerson.html.twig');
}
/**
@@ -48,7 +48,7 @@ class AdminController extends AbstractController
*/
public function indexSocialWorkAdminAction()
{
return $this->render('ChillPersonBundle:Admin:indexSocialWork.html.twig');
return $this->render('@ChillPerson/Admin/indexSocialWork.html.twig');
}
/**