{% extends 'base.html.twig' %} {% block title %} {{species.name}} - {{pageName}} {% endblock %} {% block sidebar %} {% include "front/species/partials/_sidebar-species.html.twig" with {'active': activePage} %} {% endblock %} {% block body %}

{{title}}


{% if activePage == 'youngs' %}

Total :

{{countCurrentsFellows.total + countLeavesFellows.total}}
{% endif %}

Actuels :

{{countCurrentsFellows.total}} (

{{countCurrentsFellows.males}} {{ ux_icon('fa6-solid:mars', {class: "w-4 h-4"}) }}

.

{{countCurrentsFellows.females}} {{ ux_icon('fa6-solid:venus', {class: "w-4 h-4"}) }}

.

{{countCurrentsFellows.inconnus}} {{ ux_icon('fa6-solid:venus-mars', {class: "w-4 h-4"}) }}

)

Partis :

{{countLeavesFellows.total}} (

{{countLeavesFellows.transfert}} {{ ux_icon('majesticons:door-exit-line', {class: "w-4 h-4"}) }}

.

{{countLeavesFellows.décès}} {{ ux_icon('ph:cross-fill', {class: "w-4 h-4"}) }}

.

{{countLeavesFellows.disparition}} {{ ux_icon('fluent:question-20-filled', {class: "w-4 h-4"}) }}

)
{% include "front/species/fellows/partials/_filter.html.twig" with {"species": species, routeName: routeName} %} {% include 'partials/_modal.html.twig' with { modalId: "modal-add-fellow", modalTitle: "Ajouter un individu", modalBody: component('add_fellow', {species: species, type: type}), } %}
{% for fellow in fellows %} {{ component('card_fellow', {fellow: fellow}) }} {% else %}
{{messageEmpty}}
{% endfor %}
{% endblock %}