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

@@ -66,7 +66,7 @@ final class PersonResourceController extends AbstractController
}
return $this->render(
'ChillPersonBundle:PersonResource:delete.html.twig',
'@ChillPerson/PersonResource/delete.html.twig',
[
'person' => $personOwner,
'resource' => $resource,
@@ -99,7 +99,7 @@ final class PersonResourceController extends AbstractController
}
return $this->render(
'ChillPersonBundle:PersonResource:edit.html.twig',
'@ChillPerson/PersonResource/edit.html.twig',
[
'person' => $personOwner,
'resource' => $resource,
@@ -118,7 +118,7 @@ final class PersonResourceController extends AbstractController
$personResources = $this->personResourceRepository->findBy(['personOwner' => $personOwner->getId()]);
return $this->render(
'ChillPersonBundle:PersonResource:list.html.twig',
'@ChillPerson/PersonResource/list.html.twig',
[
'person' => $personOwner,
'personResources' => $personResources,
@@ -148,7 +148,7 @@ final class PersonResourceController extends AbstractController
}
return $this->render(
'ChillPersonBundle:PersonResource:create.html.twig',
'@ChillPerson/PersonResource/create.html.twig',
[
'form' => $form->createView(),
'person' => $personOwner,