fix(project_management): Ensure project type and state show on index page
ref: #295 #300
This commit is contained in:
@ -24,10 +24,18 @@
|
|||||||
<a href="{% url 'Project Management:_project_view' pk=project.id %}">{{ project.name }}</a>
|
<a href="{% url 'Project Management:_project_view' pk=project.id %}">{{ project.name }}</a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
{% if project.project_type %}
|
||||||
|
{{ project.project_type }}
|
||||||
|
{% else%}
|
||||||
|
-
|
||||||
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
{% if project.state %}
|
||||||
|
{{ project.state }}
|
||||||
|
{% else%}
|
||||||
|
-
|
||||||
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
<td>{% if project.is_global %}Global{% else %}{{ project.organization }}{% endif %}</td>
|
<td>{% if project.is_global %}Global{% else %}{{ project.organization }}{% endif %}</td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
|
Reference in New Issue
Block a user