Update path to twig template with new syntax

This commit is contained in:
2023-07-28 12:16:50 +02:00
parent 55b8502896
commit e839b03cc9
111 changed files with 220 additions and 223 deletions

View File

@@ -6,7 +6,7 @@
<h1>{{ 'Document category edit'|trans }}</h1>
{# DISABLED
{{ include('ChillDocStoreBundle:DocumentCategory:_form.html.twig', {'button_label': 'Update'}) }}
{{ include('@ChillDocStore/DocumentCategory/_form.html.twig', {'button_label': 'Update'}) }}
#}
{{ form_start(form) }}

View File

@@ -6,7 +6,7 @@
<h1>{{ 'Create new DocumentCategory' | trans }}</h1>
{# DISABLED
{{ include('ChillDocStoreBundle:DocumentCategory:_form.html.twig') }}
{{ include('@ChillDocStore/DocumentCategory/_form.html.twig') }}
#}
{{ form_start(form) }}

View File

@@ -36,7 +36,7 @@
class="btn btn-edit">{{ 'Edit' | trans }}</a>
</li>
<li>
{{ include('ChillDocStoreBundle:DocumentCategory:_delete_form.html.twig') }}
{{ include('@ChillDocStore/DocumentCategory/_delete_form.html.twig') }}
</li>
</ul>
{% endblock %}