Skip to content

Commit

Permalink
refactor(itim): Add Cluster type to index page
Browse files Browse the repository at this point in the history
ref: #244 #71
  • Loading branch information
jon-nfc committed Aug 19, 2024
1 parent 980e458 commit f748860
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/itim/templates/itim/cluster_index.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<table class="data">
<tr>
<th>Title</th>
<th>Cluster / Device</th>
<th>Type</th>
<th>Organization</th>
<th>&nbsp;</th>
</tr>
Expand All @@ -15,10 +15,10 @@
<tr>
<td><a href="{% url 'ITIM:_cluster_view' pk=item.id %}">{{ item.name }}</a></td>
<td>
{% if item.device %}
{{ item.device }}
{% if item.cluster_type %}
{{ item.cluster_type }}
{% else %}
{{ item.cluster }}
&nbsp;
{% endif %}
</td>
<td>{{ item.organization }}</td>
Expand Down

0 comments on commit f748860

Please sign in to comment.