Liste des zones d'intervention
- Projet : {{ nom_projet }}
- Activité : {{ activite.label }}
- Thématique: {% for thematique in activite.thematique %}
{{ thematique.label }}
{% if not loop.last %},{% endif %}
{% endfor %}
{% if cilabe_zone_intervention == "P" %}
| Numéro d'ordre |
Region |
{% for zone in zone_interventions %}
| {{ zone.id }} |
{{ zone.label }} |
{% endfor %}
| Numéro d'ordre |
Region |
{% endif %}
{% if cilabe_zone_intervention == "R" %}
| Province |
Region |
{% for zone in zone_interventions %}
{% for sub_element in zone %}
| {{ sub_element.province }} |
{{ sub_element.label }} |
{% endfor %}
{% endfor %}
| Province |
Region |
{% endif %}
{# ----------DISTRICT---------- #}
{% if cilabe_zone_intervention =="D" %}
| Province |
Region |
District |
{% for zone in zone_interventions %}
{% for sub_element in zone %}
| {{ sub_element.province }} |
{{ sub_element.region }} |
{{ sub_element.district }} |
{% endfor %}
{% endfor %}
| Province |
Region |
District |
{% endif %}
{# ----------FIN DISTRICT---------- #}
{# ----------DEBUT COMMUNE---------- #}
{% if cilabe_zone_intervention =="C" %}
| Province |
Region |
District |
Commune |
{% for zone in zone_interventions %}
{% for sub_element in zone %}
| {{ sub_element.province }} |
{{ sub_element.region }} |
{{ sub_element.district }} |
{{ sub_element.commune }} |
{% endfor %}
{% endfor %}
| Province |
Region |
District |
Commune |
{% endif %}
{# ----------FOKOTANY COMMUNE---------- #}
{% if cilabe_zone_intervention =="F" %}
| Province |
Région |
District |
Commune |
Fokontany |
{% for zone in zone_interventions %}
{% for sub_element in zone %}
| {{ sub_element.province }} |
{{ sub_element.region }} |
{{ sub_element.district }} |
{{ sub_element.commune }} |
{{ sub_element.fokontany }} |
{% endfor %}
{% endfor %}
| Province |
Région |
District |
Commune |
Fokontany |
{% endif %}
{# ----------BV COMMUNE---------- #}
{% if cilabe_zone_intervention =="B" %}
| Province |
Région |
District |
Commune |
Fokontany |
Bureau de vote |
{% for zone in zone_interventions %}
{% for sub_element in zone %}
| {{ sub_element.province }} |
{{ sub_element.region }} |
{{ sub_element.district }} |
{{ sub_element.commune }} |
{{ sub_element.fokontany }} |
{{ sub_element.bv }} |
{% endfor %}
{% endfor %}
| Province |
Région |
District |
Commune |
Fokontany |
Bureau de vote |
{% endif %}