FestinHegre/templates/tables/new.html.twig

16 lines
378 B
Twig

{% extends 'base.html.twig' %}
{% block title %}New Tables{% endblock %}
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('css/new.css') }}"> <!-- Ajout du fichier CSS -->
{% endblock %}
{% block body %}
<h1>Create new Tables</h1>
{{ include('tables/_form.html.twig') }}
<a href="{{ path('app_tables_index') }}">back to list</a>
{% endblock %}