1

のカスタム フォームを作成し、easyadmin に統合しました。フォームは表示され、入力され、アクションは機能していますが、テンプレートは適切ではありません:

ここに画像の説明を入力

ここに私の小枝があります:

    {% extends "@EasyAdmin/page/content.html.twig" %}
{% form_theme form with easyadmin_config('design.form_theme') only %}

{% block body_id 'easyadmin-edit-User-1' %}
{% block body_class 'edit edit-user' %}
{% block content_title %}
        <h1 class="title">Edit Account</h1>
{% endblock %}
{% block content_footer_wrapper '' %}
{% block main %}
    {% block entity_form %}
        {{ form_start(form) }}
        {{ form_widget(form) }}
        <button type="submit" class="btn btn-primary">Update</button>
        {{ form_end(form) }}
    {% endblock entity_form %}
{% endblock %}
{% block body_javascript %}
    {{ include('@EasyAdmin/default/includes/_select2_widget.html.twig') }}
{% endblock %}

と私のコントローラ:

class UserController extends EasyAdminController
{
    public function editaccountAction(UserInterface $loggedUser, Request $request) {

        $repository = $this->getDoctrine()->getRepository(User::class);
        $id = $loggedUser->getId();
        $entity = $repository->find($id);

        $form = $this->createForm(UserType::class, $entity);

        $form->handleRequest($request);
        if ($form->isSubmitted() && $form->isValid()) {
            /** @var Article $article */
            $entity= $form->getData();
            $em = $this->getDoctrine()->getManager();
            $em->persist($entity);
            $em->flush();
            $this->addFlash('success', 'Account Saved');
            return $this->redirectToRoute('easyadmin');
        }
        return $this->render('user/editaccs.html.twig', [
            'form' => $form->createView(),
        ]);
    }
}

編集と同じフォームのプレゼンテーションを行うにはどうすればよいですか?

4

1 に答える 1