mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-07-02 15:06:15 +00:00
18 lines
526 B
Twig
18 lines
526 B
Twig
{% extends '@ChillPerson/Household/layout.html.twig' %}
|
|
|
|
{% block title 'Move household'|trans %}
|
|
|
|
{% block content %}
|
|
<h1>{{ block('title') }}</h1>
|
|
|
|
<div>
|
|
{# include vue_address component #}
|
|
{% 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 }),
|
|
openPanesInModal: false,
|
|
} %}
|
|
</div>
|
|
|
|
{% endblock %}
|