Skip to content

Commit

Permalink
Fix form pagepart view variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny van Wijk committed Aug 14, 2024
1 parent a44ead7 commit 101fda7
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% if frontendform is defined %}
{{ form_widget(frontendform['formwidget_'~resource.uniqueId], { 'attr' : {'bound' : frontendformobject.submitted } }) }}
{{ form_widget(frontendform['formwidget_'~resource.uniqueId], { 'attr' : {'bound' : isSubmitted } }) }}

<a class="js-kmcc-extended-modal-button" data-target="legal_privacy_policy" data-url="{{ path('kunstmaancookiebundle_legal_modal', {'internal_name': 'legal_privacy_policy'}) }}">
{{ 'kuma.cookie.pageparts.optin.policy' | trans }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{% if frontendform is defined %}
{{ form_widget(frontendform['formwidget_'~resource.uniqueId], { 'attr' : {'bound' : frontendformobject.submitted } }) }}
{{ form_widget(frontendform['formwidget_'~resource.uniqueId], { 'attr' : {'bound' : isSubmitted } }) }}
{% endif %}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% if frontendform is defined %}
{{ form_widget(frontendform['formwidget_'~resource.uniqueId], { 'attr' : {'bound' : frontendformobject.submitted } }) }}
{{ form_widget(frontendform['formwidget_'~resource.uniqueId], { 'attr' : {'bound' : isSubmitted } }) }}
{{ form_errors(frontendform['formwidget_'~resource.uniqueId]) }}
{% endif %}
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{% if frontendform is defined %}
{{ form_widget(frontendform['formwidget_'~resource.uniqueId], { 'attr' : {'bound' : frontendformobject.submitted } }) }}
{{ form_widget(frontendform['formwidget_'~resource.uniqueId], { 'attr' : {'bound' : isSubmitted } }) }}
{% endif %}
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{% if frontendform is defined %}
{{ form_widget(frontendform['formwidget_'~resource.uniqueId], { 'attr' : {'bound' : frontendformobject.submitted } }) }}
{{ form_widget(frontendform['formwidget_'~resource.uniqueId], { 'attr' : {'bound' : isSubmitted } }) }}
{% endif %}
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{% if frontendform is defined %}
{{ form_widget(frontendform['formwidget_'~resource.uniqueId], { 'attr' : {'bound' : frontendformobject.submitted } }) }}
{{ form_widget(frontendform['formwidget_'~resource.uniqueId], { 'attr' : {'bound' : isSubmitted } }) }}
{% endif %}
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{% if frontendform is defined %}
{{ form_widget(frontendform['formwidget_'~resource.uniqueId], { 'attr' : {'bound' : frontendformobject.submitted } }) }}
{{ form_widget(frontendform['formwidget_'~resource.uniqueId], { 'attr' : {'bound' : isSubmitted } }) }}
{% endif %}

0 comments on commit 101fda7

Please sign in to comment.