From 0c9d86916003172c3139e3bef82811bffb4ddf22 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Tue, 8 Nov 2016 15:46:59 +0100 Subject: [PATCH] Person data style --- app/templates/network/person_detail.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/templates/network/person_detail.html b/app/templates/network/person_detail.html index bec07bc3..fd697105 100644 --- a/app/templates/network/person_detail.html +++ b/app/templates/network/person_detail.html @@ -39,23 +39,23 @@ {% for activity in person.activities.all %}
  • {% if activity.function %} - {% trans 'Function'%} : {{ activity.function }}
    + {% trans 'Function'%} : {{ activity.function }}
    {% endif %} {% if activity.status %} - {% trans 'Status'%} : {{ activity.status }}
    + {% trans 'Status'%} : {{ activity.status }}
    {% endif %} {% with activity.teams.all as teams %} {% if teams %} - {% trans 'Team' %} : + {% trans 'Team' %} : {% for team in teams %} - {{ team.name }}{% if not forloop.last %}, {% endif %} + {{ 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 }}{% if not forloop.last %}, {% endif %} {% endfor %} -- 2.39.5