diff --git a/src/Bundle/ChillPersonBundle/Resources/views/Address/edit.html.twig b/src/Bundle/ChillPersonBundle/Resources/views/Address/edit.html.twig index e2e9167b3..75994729c 100644 --- a/src/Bundle/ChillPersonBundle/Resources/views/Address/edit.html.twig +++ b/src/Bundle/ChillPersonBundle/Resources/views/Address/edit.html.twig @@ -29,10 +29,12 @@ {# include vue_address component #} {% include '@ChillMain/Address/_insert_vue_address.html.twig' with { targetEntity: { name: 'person', id: person.id }, + backUrl: path('chill_person_address_list', { 'person_id': person.id }), openPanesInModal: false, + stickyActions: true, + useValidFrom: true, } %} {# - backUrl: path('chill_person_address_list', { 'person_id': person.id }), #} {% endblock %} diff --git a/src/Bundle/ChillPersonBundle/Resources/views/Address/new.html.twig b/src/Bundle/ChillPersonBundle/Resources/views/Address/new.html.twig index c88959340..91c384103 100644 --- a/src/Bundle/ChillPersonBundle/Resources/views/Address/new.html.twig +++ b/src/Bundle/ChillPersonBundle/Resources/views/Address/new.html.twig @@ -29,13 +29,13 @@ {# include vue_address component #} {% include '@ChillMain/Address/_insert_vue_address.html.twig' with { targetEntity: { name: 'person', id: person.id }, + backUrl: path('chill_person_address_list', { 'person_id': person.id }), + openPanesInModal: false, stickyActions: true, useValidFrom: true, } %} {# useValidTo: true, - backUrl: path('chill_person_address_list', { 'person_id': person.id }), - openPanesInModal: false, #} {% endblock %} diff --git a/src/Bundle/ChillPersonBundle/Resources/views/Household/address_edit.html.twig b/src/Bundle/ChillPersonBundle/Resources/views/Household/address_edit.html.twig index c909e62d3..c8342fb07 100644 --- a/src/Bundle/ChillPersonBundle/Resources/views/Household/address_edit.html.twig +++ b/src/Bundle/ChillPersonBundle/Resources/views/Household/address_edit.html.twig @@ -10,8 +10,9 @@ {% include '@ChillMain/Address/_insert_vue_address.html.twig' with { targetEntity: { name: 'household', id: household.id }, backUrl: path('chill_person_household_addresses', { 'household_id': household.id }), - stickyActions: true, openPanesInModal: false, + stickyActions: true, + useValidFrom: true, } %} diff --git a/src/Bundle/ChillPersonBundle/Resources/views/Household/address_move.html.twig b/src/Bundle/ChillPersonBundle/Resources/views/Household/address_move.html.twig index 2015a8599..b10ef7942 100644 --- a/src/Bundle/ChillPersonBundle/Resources/views/Household/address_move.html.twig +++ b/src/Bundle/ChillPersonBundle/Resources/views/Household/address_move.html.twig @@ -12,7 +12,10 @@ backUrl: path('chill_person_household_addresses', { 'household_id': household.id }), openPanesInModal: false, stickyActions: true, + useValidFrom: true, } %} + {# + #} {% endblock %}