mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-23 02:34:24 +00:00
15 lines
409 B
Twig
15 lines
409 B
Twig
{% extends '@ChillPerson/Household/layout.html.twig' %}
|
|
|
|
{% block title 'Addresses history for household'|trans %}
|
|
|
|
{% block content %}
|
|
<h1>{{ block('title') }}</h1>
|
|
|
|
<p>Household with id {{ household.id }}</p>
|
|
|
|
<a class="sc-button bt-update" href="{{ chill_path_add_return_path('chill_person_household_address_move', { 'household_id': household.id }) }}">
|
|
{{ 'Move household'|trans }}
|
|
</a>
|
|
|
|
{% endblock %}
|