FestinHegre/templates/commandes/new.html.twig

16 lines
390 B
Twig
Raw Normal View History

2024-11-21 15:11:11 +01:00
{% extends 'base.html.twig' %}
{% block title %}New Commandes{% endblock %}
2024-11-21 16:18:02 +01:00
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('css/new.css') }}"> <!-- Ajout du fichier CSS -->
{% endblock %}
2024-11-21 15:11:11 +01:00
{% block body %}
<h1>Create new Commandes</h1>
{{ include('commandes/_form.html.twig') }}
<a href="{{ path('app_commandes_index') }}">back to list</a>
{% endblock %}