mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-26 11:01:04 +00:00
Rename Manage template folder to User
This commit is contained in:
parent
0075456344
commit
fab4ccb01f
4 changed files with 3 additions and 3 deletions
|
@ -68,7 +68,7 @@ class UserController extends AbstractController
|
|||
return $this->redirectToRoute('user_edit', ['id' => $user->getId()]);
|
||||
}
|
||||
|
||||
return $this->render('@WallabagUser/Manage/new.html.twig', [
|
||||
return $this->render('@WallabagUser/User/new.html.twig', [
|
||||
'user' => $user,
|
||||
'form' => $form->createView(),
|
||||
]);
|
||||
|
@ -109,7 +109,7 @@ class UserController extends AbstractController
|
|||
return $this->redirectToRoute('user_edit', ['id' => $user->getId()]);
|
||||
}
|
||||
|
||||
return $this->render('@WallabagUser/Manage/edit.html.twig', [
|
||||
return $this->render('@WallabagUser/User/edit.html.twig', [
|
||||
'user' => $user,
|
||||
'edit_form' => $form->createView(),
|
||||
'delete_form' => $deleteForm->createView(),
|
||||
|
@ -174,7 +174,7 @@ class UserController extends AbstractController
|
|||
}
|
||||
}
|
||||
|
||||
return $this->render('@WallabagUser/Manage/index.html.twig', [
|
||||
return $this->render('@WallabagUser/User/index.html.twig', [
|
||||
'searchForm' => $form->createView(),
|
||||
'users' => $pagerFanta,
|
||||
]);
|
||||
|
|
Loading…
Reference in a new issue