{% extends 'base_emine.html.twig' %} {% block title %}{{parent()}}-Exportations des métaux strategiques par pays{% endblock %} {#{% block content %}

Exportations des métaux strategiques par pays

STATISTIQUE DES EXPORTATIONS DES METAUX STRATEGIQUES

{% set totalQte = 0 %} {% for item in exportPays %} {% else %} {% endfor %}
REALISATION DE L'EXPORTATION DU {{commodite ? commodite.nom|upper : ''}} EN {{dateAnnnee|date('Y')}} PAR PAYS DE DESTINATION
Pays Quantité Pourcentage
{{item.pays}} {{item.quantite}} {{commodite.filiere.unite}} {{ (item.quantite / cumulPays) * 100 | round(1, 'floor') }}
Aucune information dans la base de données
CUMUL {{totalQte}} {{commodite ? commodite.filiere.unite : ''}} {% if cumulPays == 0 %} 0 % {% else %} 100 % {% endif %}
{% set totalQte = 0 %} {% for item in exportPaysGlob %} {% set totalQte = totalQte + item.quantite %} {% else %} {% endfor %}
REALISATION DE L'EXPORTATION GLOBALE DU {{commodite ? commodite.nom|upper : ''}} PAR PAYS DE DESTINATION
Pays Quantité Pourcentage
{{item.pays}} {{item.quantite}} {{commodite.filiere ? commodite.filiere.unite : ''}} {{ (item.quantite / cumulPays1) * 100 | round(1, 'floor') }}
Aucune information dans la base de données
CUMUL {{totalQte}} {{commodite.filiere ? commodite.filiere.unite : ''}} {% if cumulPays1 == 0 %} 0 % {% else %} 100 % {% endif %}
{% endblock %}#} {% block content %}

📊 Exportations des métaux stratégiques par pays

Statistiques des exportations des métaux stratégiques par pays en {{dateAnnnee|date('Y')}}

{% set totalQte = 0 %} {% for item in exportPays %} {% set totalQte = totalQte + item.quantite %} {% else %} {% endfor %}
REALISATION DE L'EXPORTATION ({{commodite.nom|upper}}) EN {{dateAnnnee|date('Y')}} PAR PAYS DE DESTINATION
Pays Quantité Pourcentage
{{item.pays}} {{item.quantite}} {{commodite.filiere.unite}} {{ (item.quantite / cumulPays1) * 100 | round(1, 'floor') }}
Aucune information dans la base de données
CUMUL {{totalQte}} {{commodite.filiere.unite}} {% if cumulPays1 == 0 %} 0 % {% else %} 100 % {% endif %}
{% set totalQte = 0 %} {% for item in exportPaysGlob %} {% set totalQte = totalQte + item.quantite %} {% else %} {% endfor %}
REALISATION DE L'EXPORTATION GLOBALE ({{commodite.nom|upper}}) PAR PAYS DE DESTINATION
Pays Quantité Pourcentage
{{item.pays}} {{item.quantite}} {{commodite.filiere.unite}} {{ (item.quantite / cumulPays1) * 100 | round(1, 'floor') }}
Aucune information dans la base de données
CUMUL {{totalQte}} {{commodite.filiere.unite}} {% if cumulPays1 == 0 %} 0 % {% else %} 100 % {% endif %}
{% endblock %} {% block javascripts %} {{parent()}} {% endblock %}