edit.html.twig 502 B

1234567891011121314151617
  1. {% extends 'base.html.twig' %}
  2. {% block page_classes 'forum-category-edit-page' %}
  3. {% block title 'title.editing_forum_category'|trans({
  4. '%category%': category.title
  5. }) %}
  6. {% block body %}
  7. <h1>{{ 'title.editing_forum_category'|trans({
  8. '%category%': '<a href="%s">%s</a>'|format(
  9. path('forum_category', {name: category.name})|e,
  10. category.title|e
  11. )})|raw }}</h1>
  12. {{ include('forum_category/_form.html.twig', {form: form, editing: true}, with_context=false) }}
  13. {% endblock %}