collection-crud/app/Resources/views/previouslyownedflash/new.html.twig

17 lines
372 B
Twig

{% extends 'base.html.twig' %}
{% block body %}
<h1>Previouslyownedflash creation</h1>
{{ form_start(form) }}
{{ form_widget(form) }}
<input type="submit" value="Create" />
{{ form_end(form) }}
<ul>
<li>
<a href="{{ path('previously-owned-flash_index') }}">Back to the list</a>
</li>
</ul>
{% endblock %}