From 95383c1873460029cfa1f61c518f1a2fe1a3201e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Je=CC=81re=CC=81my=20Fabre?= Date: Thu, 29 Sep 2016 18:12:11 +0200 Subject: [PATCH] Fix some bug on project details --- app/templates/projects/project_detail.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/templates/projects/project_detail.html b/app/templates/projects/project_detail.html index e5152c42..5466496a 100644 --- a/app/templates/projects/project_detail.html +++ b/app/templates/projects/project_detail.html @@ -28,7 +28,7 @@ {% comment %} {% if department %} -
+
{{ department.pages.all.0.title }}
{% endif %} @@ -211,7 +211,7 @@ {% trans "Project lead team" %}
- {{ project.lead_team }} + {{ project.lead_team.pages.all.0.title }}
{% elif project.lead_organization %}
@@ -231,7 +231,7 @@
{% for team in project.teams.all %} {% if team.pages.all %} - {{ team }}
+ {{ team.pages.all.0.title }}
{% endif %} {% endfor %} {% for organization in project.organizations.all %} -- 2.39.5