futtern/templates/vendor/new.html.twig

12 lines
246 B
Twig
Raw Normal View History

2024-02-05 15:16:43 +00:00
{% 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 %}