{% extends 'base.html' %} {% load static %} {% load i18n %} {% block title %}{% trans " GLOCAL IMPACT 3A - Nos Projets" %} {% endblock %} {% block content %}

{% trans "NOS PROJETS" %}

{% trans "Réalisations concrètes pour un impact durable" %}

{% for secteur in secteurs %} {{ secteur.icon }} {{ secteur.nom }} {% endfor %}

{% trans "NOTRE IMPACT EN CHIFFRES__TEST123" %}

DEBUG stats={{ stats|default:"(stats absent)" }} {{ stats.nombre_projets }}

{% trans "Projets réalisés" %}

{{ stats.nombre_beneficiaires|default:"0" }}

{% trans "Bénéficiaires directs" %}

{{ stats.nombre_partenaires|default:"0" }}

{% trans "Partenaires impliqués" %}

{{ stats.nombre_regions|default:"0" }}

{% trans "Régions couvertes" %}

{% for projet in projets %}
{% if projet.image_principale %} {{ projet.titre }} {% else %}
📋
{% endif %}
{{ projet.get_secteur_display }} {{ projet.get_domaines_expertise_display }}
{{ projet.titre }}

{{ projet.resume|truncatechars:120 }}

{{ projet.date_fin|date:"d/m/Y" }} {{ projet.nombre_beneficiaires }}
{% empty %}

{% trans "Aucun projet trouvé dans cette catégorie." %}

{% endfor %}
{% if projets.has_other_pages %} {% endif %}

{% trans "PROJETS RÉCENTS" %}

{% for projet in projets_recents %}
{% if projet.image_principale %} {{ projet.titre }} {% endif %}
{{ projet.get_secteur_display }}
{{ projet.titre }}

{{ projet.resume|truncatechars:80 }}

{% empty %}

{% trans "Aucun projet récent" %}

{% endfor %}
{% endblock %}