mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-30 22:16:14 +00:00
25 lines
634 B
Twig
25 lines
634 B
Twig
{% extends '@ChillPerson/Household/layout.html.twig' %}
|
|
|
|
{% block title 'Move household'|trans %}
|
|
|
|
{% block content %}
|
|
<h1>{{ block('title') }}</h1>
|
|
|
|
<div>
|
|
<div id="household-address"></div>
|
|
</div>
|
|
|
|
{% block stylesheets %}
|
|
<link href="{{ asset('build/address.css') }}" type="text/css" rel="stylesheet" />
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script type="text/javascript">
|
|
window.householdId = {{ household.id|e('js') }};
|
|
window.vueRootComponent = 'app';
|
|
</script>
|
|
{{ encore_entry_script_tags('household_address') }}
|
|
{% endblock %}
|
|
|
|
{% endblock %}
|