{% extends "page.html" %} {% load i18n thumbnail remote %} {% block meta_title %}Liste des projets{% endblock %} {% block stylesheet %} {{ block.super }} {% endblock stylesheet %} {% block javascript %} {{ block.super }} {% endblock javascript %} {% block article %}

Liste des projets

Vous trouverez ici tous les projets d'Education au développement portés par les membres du réseau.

{% for item in projets %}
{% thumbnail item.logo "180x180" as im %} {% endthumbnail %} {{ item.title }}

{{ item.description|safe|truncatewords:30 }}

{% if item.person or item.remote_person_label %}
Auteur
{% local_or_remote uri article person as author_uri %} {% local_or_remote label article person as author_label %}
{% if author_uri %}{% endif %} {{ author_label }} {% if author_uri %}{% endif %}
{% endif %} {% if item.organization or item.remote_organization_label %}
Structure
{% local_or_remote uri item organization as org_uri %} {% local_or_remote label item organization as org_label %}
{% if org_uri %}{% endif %} {{ org_label }} {% if org_uri %}{% endif %}
{% endif %} {% if item.zone %}
Zone géographique
{{ item.zone.label }}
{% endif %} {% if item.status %}
Statut
{{ item.get_status_display }}
{% endif %} {% if item.ead_disciplines.all %}
Discipline associée
{% for d in item.ead_disciplines.all %} {{ d }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %} {% if item.tags.all %}
Mots-clés
{% for tag in item.tags.all %} {{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %}
En savoir plus sur ce projet
{% endfor%} {% endblock article %}