futtern/templates/vendor/new.html.twig
2024-02-05 16:16:43 +01:00

11 lines
246 B
Twig

{% extends 'base.html.twig' %}
{% block title %}New Vendor{% endblock %}
{% block body %}
<h1>Create new Vendor</h1>
{{ include('vendor/_form.html.twig') }}
<a href="{{ path('app_vendor_index') }}">back to list</a>
{% endblock %}