fix(project_management): Ensure project type and state show on index page

ref: #295 #300
This commit is contained in:
2024-09-18 00:20:07 +09:30
parent 7f094a9f96
commit 92d3692f85

View File

@ -24,10 +24,18 @@
<a href="{% url 'Project Management:_project_view' pk=project.id %}">{{ project.name }}</a>
</td>
<td>
&nbsp;
{% if project.project_type %}
{{ project.project_type }}
{% else%}
-
{% endif %}
</td>
<td>
&nbsp;
{% if project.state %}
{{ project.state }}
{% else%}
-
{% endif %}
</td>
<td>{% if project.is_global %}Global{% else %}{{ project.organization }}{% endif %}</td>
<td>&nbsp;</td>