mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-26 12:06:13 +00:00
19 lines
559 B
Twig
19 lines
559 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 }),
|
|
bindModalStep1: false,
|
|
bindModalStep2: false,
|
|
} %}
|
|
</div>
|
|
|
|
{% endblock %}
|