mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-24 11:06:14 +00:00
21 lines
588 B
Twig
21 lines
588 B
Twig
{% extends '@ChillPerson/Household/layout.html.twig' %}
|
|
|
|
{% block title 'Edit household address'|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 }),
|
|
} %}
|
|
{#
|
|
stickyActions: true
|
|
openPanesInModal: false,
|
|
#}
|
|
</div>
|
|
|
|
{% endblock %}
|