]> Raphaël G. Git Repositories - airbundle/commitdiff
Add support for label_html
authorRaphaël Gertz <git@rapsys.eu>
Thu, 13 Oct 2022 13:11:11 +0000 (15:11 +0200)
committerRaphaël Gertz <git@rapsys.eu>
Thu, 13 Oct 2022 13:11:11 +0000 (15:11 +0200)
Resources/views/form/form_div_layout.html.twig

index 34af91ef39b57b7196fa67bd340de17c6f7ad527..9270f0e08e6e1d2894d30b4c9a233e55d8a8725e 100644 (file)
         {%- endif -%}
         <{{ element|default('label') }}{% if label_attr %}{% with { attr: label_attr } %}{{ block('attributes') }}{% endwith %}{% endif %}>
             {%- if translation_domain is same as(false) -%}
-                {{- label -}}
+                               {%- if label_html is same as(false) -%}
+                                       {{- label -}}
+                               {%- else -%}
+                                       {{- label|raw -}}
+                               {%- endif -%}
             {%- else -%}
-                {{- label|trans({}, translation_domain) -}}
+                               {%- if label_html is same as(false) -%}
+                                       {{- label|trans({}, translation_domain) -}}
+                               {%- else -%}
+                                       {{- label|trans({}, translation_domain)|raw -}}
+                               {%- endif -%}
             {%- endif -%}
         </{{ element|default('label') }}>
     {%- endif -%}