mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-27 12:36:12 +00:00
28 lines
589 B
Twig
28 lines
589 B
Twig
{% extends '@ChillPerson/Household/layout.html.twig' %}
|
|
|
|
{% block title 'household.Relationship'|trans %}
|
|
|
|
{% block content %}
|
|
<h1>{{ block('title') }}</h1>
|
|
<div id="graph-relationship"></div>
|
|
|
|
{% for m in household.members %}
|
|
{% if m.endDate is null %}
|
|
{{ dump(m) }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
{{ parent() }}
|
|
{{ encore_entry_script_tags('page_vis') }}
|
|
{% endblock %}
|
|
|
|
{% block css %}
|
|
{{ parent() }}
|
|
{{ encore_entry_link_tags('page_vis') }}
|
|
{% endblock %}
|
|
|
|
{% block block_post_menu %}{% endblock %}
|