diff --git a/src/Controller/Admin/ContratController.php b/src/Controller/Admin/ContratController.php new file mode 100644 index 0000000..a258ad8 --- /dev/null +++ b/src/Controller/Admin/ContratController.php @@ -0,0 +1,19 @@ +render('admin/contrats/index.html.twig'); + } +} diff --git a/templates/admin/_layout.html.twig b/templates/admin/_layout.html.twig index 6cad9bc..2ff63c7 100644 --- a/templates/admin/_layout.html.twig +++ b/templates/admin/_layout.html.twig @@ -49,6 +49,10 @@ Clients + + + Contrats + Facturation diff --git a/templates/admin/contrats/index.html.twig b/templates/admin/contrats/index.html.twig new file mode 100644 index 0000000..730f42f --- /dev/null +++ b/templates/admin/contrats/index.html.twig @@ -0,0 +1,26 @@ +{% extends 'admin/_layout.html.twig' %} + +{% block title %}Contrats - Association E-Cosplay{% endblock %} + +{% block admin_content %} +
+
+

Contrats

+
+ + {% for type, messages in app.flashes %} + {% for message in messages %} +
{{ message }}
+ {% endfor %} + {% endfor %} + +
+ + + +

Contrats

+

Cette section sera disponible prochainement.

+

Creez un contrat, faites-le signer, puis l'espace client sera cree automatiquement.

+
+
+{% endblock %}