16 lines
393 B
Twig
16 lines
393 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}New Tables{% endblock %}
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="{{ asset('css/ControllerVues/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 %}
|