mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-27 20:46:14 +00:00
41 lines
1.6 KiB
Twig
41 lines
1.6 KiB
Twig
<div class="subheader banner-household">
|
|
<div class="grid-12 parent" id="header-accompanying_course-name" >
|
|
<div class="grid-10 push-1 grid-mobile-12 grid-tablet-12 push-mobile-0 push-tablet-0 parent">
|
|
|
|
<div class="grid-6">{% set title = title %}
|
|
<h1>
|
|
<i class="fa fa-home"></i>
|
|
{{ 'household.Household'|trans }}
|
|
<span style="font-weight: lighter; font-size: 50%;">(n°{{ household.id }})</span>
|
|
</h1>
|
|
</div>
|
|
|
|
<div class="grid-3" id="banner-flags"></div>
|
|
|
|
<div class="grid-3" id="banner-status"></div>
|
|
|
|
</div>
|
|
</div>
|
|
<div class="grid-12 parent" id="header-accompanying_course-details" >
|
|
<div class="grid-10 push-1 grid-mobile-12 grid-tablet-12 push-mobile-0 push-tablet-0 parent">
|
|
<div id="banner-misc">
|
|
{%- set persons = household.getCurrentPersons() -%}
|
|
{%- if persons|length > 0 -%}
|
|
<span class="current-members-explain">
|
|
{{- 'household.Current household members'|trans }}:
|
|
</span>
|
|
{%- for p in persons|slice(0, 5) -%}
|
|
{{- p|chill_entity_render_box({'addLink': false}) -}}
|
|
{%- if false == loop.last -%}, {% endif -%}
|
|
{%- endfor -%}
|
|
{% if persons|length > 5 %}
|
|
<span class="current-members-more">
|
|
{{ 'household.and x other persons'|trans({'x': persons|length-5}) }}
|
|
</span>
|
|
{% endif %}
|
|
{%- endif -%}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|