FestinHegre/templates/clients/new.html.twig
2024-11-21 15:11:11 +01:00

12 lines
250 B
Twig

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