caisse-bliss/app/Resources/views/sellrecord/new.html.twig
2018-04-05 14:21:32 +02:00

17 lines
350 B
Twig

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