collection-crud/templates/fpu/new.html.twig

26 lines
452 B
Twig
Raw Permalink Normal View History

2022-10-25 14:52:58 -04:00
{% extends 'form.html.twig' %}
2022-10-27 11:55:16 -04:00
{% block title %}Add FPU{% endblock %}
2022-10-25 14:52:58 -04:00
{% block form %}
2022-10-27 11:55:16 -04:00
<h2>Add FPU</h2>
2022-10-25 14:52:58 -04:00
<div class="small callout">
<ul>
<li>
<a href="{{ path('fpu_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 %}