From: Raphaƫl Gertz Date: Wed, 24 Feb 2021 00:43:37 +0000 (+0100) Subject: Switch to new form naming X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/4b91982c19fb2d26e7113959833623fe4aa4a05b Switch to new form naming --- diff --git a/Resources/views/form/_toolbox.html.twig b/Resources/views/form/_toolbox.html.twig index e969791..14e9593 100644 --- a/Resources/views/form/_toolbox.html.twig +++ b/Resources/views/form/_toolbox.html.twig @@ -1,15 +1,21 @@ -{# Display application or login form #} -{% if is_granted('ROLE_GUEST') %} -
- {% if application is defined %} - {{ include('@RapsysAir/form/_application.html.twig') }} - {% endif %} - {% if session_edit is defined %} - {{ include('@RapsysAir/form/_session_edit.html.twig') }} - {% endif %} -
-{% elseif not is_granted('IS_AUTHENTICATED_REMEMBERED') %} -
- {{ include('@RapsysAir/form/_login.html.twig') }} -
+{# Display login or application form #} +{% if forms is defined and forms %} + {% if forms.login is defined and forms.login %} + + {% else %} + + {% endif %} {% endif %}