FestinHegre/templates/plats/new.html.twig

15 lines
388 B
Twig
Raw Permalink Normal View History

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