From ff1f82c302c022c4e3f8ca40b1b54dd039d8bb5b Mon Sep 17 00:00:00 2001 From: Lucas Date: Thu, 16 Oct 2025 10:08:29 +0200 Subject: [PATCH 1/2] form styling (new page) --- templates/page/new.html.twig | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/templates/page/new.html.twig b/templates/page/new.html.twig index bea177a..c872cf0 100644 --- a/templates/page/new.html.twig +++ b/templates/page/new.html.twig @@ -3,9 +3,11 @@ {% block title %}Création{% endblock %} {% block main %} -

Ajouter une nouvelle page

+
+

Ajouter une nouvelle page

- {{ include('page/_form.html.twig', {'button_label': 'Ajouter'})}} + {{ include('page/_form.html.twig', {'button_label': 'Ajouter'})}} - Retour à la liste + Retour +
{% endblock %} From 1244e85d4afee8c5043562a6a077b298c0f26e8a Mon Sep 17 00:00:00 2001 From: Lucas Date: Thu, 16 Oct 2025 10:09:52 +0200 Subject: [PATCH 2/2] fix up return link from edit page linking to wrong page --- templates/page/edit.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/page/edit.html.twig b/templates/page/edit.html.twig index ab16cd7..ac09add 100644 --- a/templates/page/edit.html.twig +++ b/templates/page/edit.html.twig @@ -8,7 +8,7 @@ {{ include('page/_form.html.twig', {'button_label': 'Valider'}) }} - Retour + Retour {% endblock %}