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

15 lines
425 B
Twig
Raw Normal View History

{% extends 'GergelyPolonkaiFrontBundle:Default:front_base.html.twig' %}
{% block content %}
{% 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 content %}