From f18f34c8730a712cca1da463850ed2447c47aef7 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Je=CC=81re=CC=81my=20Fabre?= {% trans 'Email' %} : {{ person_email }}
- {% trans 'Activities' %}:
-
-
+
+ {% if person.activities.all|length > 0 %}
+
{% trans 'Activities' %}
+
{% for activity in person.activities.all %}
-
-
+ {% trans 'Functions'%}: {{ activity.function }}
{% endif %}
{% with activity.teams.all as actvities %}
{% if actvities %}
- {% trans 'Teams' %} :
+ {% trans 'Teams' %}:
{% for team in actvities %}
- {{ team.name }}
+ {{ team.name }}{% if not forloop.last %}, {% endif %}
{% endfor %}
+
{% endif %}
{% endwith %}
{% with activity.organizations.all as organizations %}
{% if organizations %}
- {% trans 'Organization' %} :
+ {% trans 'Organization' %}:
{% for organization in organizations %}
- {{ organization.name }}
+ {{ organization.name }}{% if not forloop.last %}, {% endif %}
{% endfor %}
+
{% endif %}
{% endwith %}