first impl for household editor

This commit is contained in:
2021-06-02 00:32:55 +02:00
parent cd52f7e6e8
commit c6949490a4
10 changed files with 340 additions and 9 deletions

View File

@@ -0,0 +1,17 @@
{% extends '@ChillMain/layout.html.twig' %}
{% block content %}
<h1>Editor</h1>
<div id="household_members_editor"></div>
{% endblock %}
{% block js %}
<script type="text/javascript">
window.household_members_editor_data = {{ data|json_encode|raw }};
</script>
{{ encore_entry_script_tags('household_members_editor') }}
{% endblock %}
{% block css %}
{{ encore_entry_link_tags('household_members_editor') }}
{% endblock %}