collection-crud/src/Resources/crud/templates/new.tpl.php

24 lines
488 B
PHP

{% extends 'form.html.twig' %}
{% block title %}<?= $entity_class_name ?> - New{% endblock %}
{% block form %}
<h2>Add <?= $entity_class_name ?></h2>
<div class="small callout">
<ul>
<li>
<a href="{{ path('<?= $route_name ?>_index') }}">Back to the list</a>
</li>
</ul>
</div>
<div class="large primary callout">
{{ form_start(form) }}
{{ form_widget(form) }}
<button type="submit" class="success button expanded">Add</button>
{{ form_end(form) }}
</div>
{% endblock %}