gergelypolonkai-web-symfony2/src/GergelyPolonkai/FrontBundle/Resources/views/Admin/editChunk.html.twig

15 lines
428 B
Twig

{% extends 'GergelyPolonkaiFrontBundle:Admin:index.html.twig' %}
{% block admincontent %}
{% if chunk.id is not null %}
<h3>Edit Code Chunk - {{ chunk.title }}</h3>
{% else %}
<h3>Create Code Chunk</h3>
{% endif %}
<form method="post" action="">
{{ form_widget(form) }}
<button type="submit">Save</button>
<a href="{{ path('GergelyPolonkaiFrontBundle_adminListChunk') }}">Cancel</a>
</form>
{% endblock admincontent %}