From 92d3692f8584a04d937bb37c891601834f7d3550 Mon Sep 17 00:00:00 2001 From: Jon Date: Wed, 18 Sep 2024 00:20:07 +0930 Subject: [PATCH] fix(project_management): Ensure project type and state show on index page ref: #295 #300 --- .../project_management/project_index.html.j2 | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/app/project_management/templates/project_management/project_index.html.j2 b/app/project_management/templates/project_management/project_index.html.j2 index e3ba180c..f8ffebf9 100644 --- a/app/project_management/templates/project_management/project_index.html.j2 +++ b/app/project_management/templates/project_management/project_index.html.j2 @@ -24,10 +24,18 @@ {{ project.name }} -   + {% if project.project_type %} + {{ project.project_type }} + {% else%} + - + {% endif %} -   + {% if project.state %} + {{ project.state }} + {% else%} + - + {% endif %} {% if project.is_global %}Global{% else %}{{ project.organization }}{% endif %}