{% 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: form, button_label: 'action.save'|trans, include_back_to_home_link: true, }, with_context = false) }} {% endblock %} {% block sidebar %}
{{ 'action.show_post'|trans }}
{{ include('admin/blog/_delete_form.html.twig', {post: post}, with_context = false) }}
{{ parent() }} {{ show_source_code(_self) }} {% endblock %}