From 0f6e0b65f14d1d417c41de11f0056ac7edc926e1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Sat, 28 Aug 2021 10:18:24 +0200 Subject: [PATCH] Add slug field --- Resources/views/form/edit.html.twig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Resources/views/form/edit.html.twig b/Resources/views/form/edit.html.twig index 8540c46..e8e0adf 100644 --- a/Resources/views/form/edit.html.twig +++ b/Resources/views/form/edit.html.twig @@ -25,6 +25,10 @@ {{ form_row(edit.pseudonym) }} {% endif %} + {% if edit.slug is defined %} + {{ form_row(edit.slug) }} + {% endif %} + {% if edit.phone is defined %} {{ form_row(edit.phone) }} {% endif %} -- 2.41.0