14 lines
306 B
Twig
14 lines
306 B
Twig
|
{% extends 'base.html.twig' %}
|
||
|
|
||
|
{% block title %}Edit FAQ{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>Edit FAQ</h1>
|
||
|
|
||
|
{{ include('faq/_form.html.twig', {'button_label': 'Update'}) }}
|
||
|
|
||
|
<a href="{{ path('app_faq_index') }}">back to list</a>
|
||
|
|
||
|
{{ include('faq/_delete_form.html.twig') }}
|
||
|
{% endblock %}
|