{% extends 'base_emine.html.twig' %} {% block title %}{{parent()}}-Statistiques sur les genres{% endblock %} {% block content %}

Statistiques sur les genres

STATISTIQUES DES EMPLOIS CREES SUR LES GENRES

REALISATION DE LA CREATION EMPLOI SUR LES GENRES EN {{dateAnnnee|date('Y')}}
Libelle Nombre d'emplois Pourcentage
Femmes {{emploAnnuel[0].femme}} {% if emploAnnuel[0].femme == 0 %} 0 {% else %} {{ (emploAnnuel[0].femme / total) * 100 | round(1, 'floor') }} {% endif %}
Hommes {{emploAnnuel[0].homme}} {% if emploAnnuel[0].homme == 0 %} 0 {% else %} {{ (emploAnnuel[0].homme / total) * 100 | round(1, 'floor') }} {% endif %}
CUMUL {{total}} {% if total == 0 %} 0 {% else %} 100 {% endif %}
{% endblock %} {% block javascripts %} {{parent()}} {% endblock %}