{% extends 'admin/layout.html.twig' %} {% block body_id 'admin_post_edit' %} {% block main %}

{{ 'title.edit_post'|trans({'%id%': post.id}) }}

{{ include('admin/blog/_form.html.twig', { form: edit_form, button_label: 'action.save'|trans, include_back_to_home_link: true, }, with_context = false) }} {% endblock %} {% block sidebar %}
{{ include('admin/blog/_form.html.twig', { form: delete_form, button_label: 'action.delete_post'|trans, button_css: 'btn btn-lg btn-block btn-danger', show_confirmation: true, }, with_context = false) }}
{{ parent() }} {% endblock %}