connexion base et création premier crud

This commit is contained in:
Logshiro
2025-10-16 13:37:35 +02:00
parent 521d0a2d61
commit ea9a187326
38 changed files with 953 additions and 2 deletions

11
templates/o/new.html.twig Normal file
View File

@@ -0,0 +1,11 @@
{% extends 'base.html.twig' %}
{% block title %}New Membre{% endblock %}
{% block body %}
<h1>Create new Membre</h1>
{{ include('o/_form.html.twig') }}
<a href="{{ path('app_o_index') }}">back to list</a>
{% endblock %}