mirror of
https://github.com/wallabag/wallabag.git
synced 2025-10-15 19:42:08 +00:00
Move templates
This commit is contained in:
parent
3c1a183e2d
commit
664b4baa3e
90 changed files with 119 additions and 118 deletions
|
@ -39,7 +39,7 @@ class IgnoreOriginInstanceRuleController extends AbstractController
|
|||
{
|
||||
$rules = $repository->findAll();
|
||||
|
||||
return $this->render('@WallabagCore/IgnoreOriginInstanceRule/index.html.twig', [
|
||||
return $this->render('IgnoreOriginInstanceRule/index.html.twig', [
|
||||
'rules' => $rules,
|
||||
]);
|
||||
}
|
||||
|
@ -70,7 +70,7 @@ class IgnoreOriginInstanceRuleController extends AbstractController
|
|||
return $this->redirectToRoute('ignore_origin_instance_rules_index');
|
||||
}
|
||||
|
||||
return $this->render('@WallabagCore/IgnoreOriginInstanceRule/new.html.twig', [
|
||||
return $this->render('IgnoreOriginInstanceRule/new.html.twig', [
|
||||
'rule' => $ignoreOriginInstanceRule,
|
||||
'form' => $form->createView(),
|
||||
]);
|
||||
|
@ -101,7 +101,7 @@ class IgnoreOriginInstanceRuleController extends AbstractController
|
|||
return $this->redirectToRoute('ignore_origin_instance_rules_index');
|
||||
}
|
||||
|
||||
return $this->render('@WallabagCore/IgnoreOriginInstanceRule/edit.html.twig', [
|
||||
return $this->render('IgnoreOriginInstanceRule/edit.html.twig', [
|
||||
'rule' => $ignoreOriginInstanceRule,
|
||||
'edit_form' => $editForm->createView(),
|
||||
'delete_form' => $deleteForm->createView(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue