address-household: address move (WIP)

This commit is contained in:
nobohan
2021-06-04 08:48:08 +02:00
parent e9caa7b4b8
commit 14a9d9c739
2 changed files with 56 additions and 3 deletions

View File

@@ -3,9 +3,29 @@
{% block title 'Move household'|trans %}
{% block content %}
<h1>{{ block('title') }}</h1>
<h1>{{ block('title') }}</h1>
<p>Household with id {{ household.id }}</p>
<p>Household with id {{ household.id }}</p>
<div>
<h2>Select an existing address</h2>
TODO: select of existing address !?
</div>
<div>
<h2>Create a new address</h2>
<div id="address"></div>
</div>
{% block stylesheets %}
<link href="{{ asset('build/address.css') }}" type="text/css" rel="stylesheet" />
{% endblock %}
{% block js %}
{{ encore_entry_script_tags('address') }}
{% endblock %}
{% endblock %}