From 1a22c531a42e277a068bfac40b8513e0c6887767 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 29 Sep 2016 11:36:34 +0200 Subject: [PATCH] Fix team display --- app/templates/projects/project_detail.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/projects/project_detail.html b/app/templates/projects/project_detail.html index 25586a85..280cc477 100644 --- a/app/templates/projects/project_detail.html +++ b/app/templates/projects/project_detail.html @@ -181,7 +181,7 @@ {% trans "Project lead team" %}
- {{ project.lead_team.short }} + {{ project.lead_team }}
{% elif project.lead_organization %}
@@ -201,7 +201,7 @@
{% for team in project.teams.all %} {% if team.pages.all %} - {{ team.short }}
+ {{ team }}
{% endif %} {% endfor %} {% for organization in project.organizations.all %} -- 2.39.5