Skip to content

Commit

Permalink
chore(itim): add placeholder for assigning service to a cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
jon-nfc committed Aug 23, 2024
1 parent 45ef814 commit b65e577
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions app/itim/templates/itim/cluster.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,33 @@

</div>

<div style="display: block; width: 100%;">

<h3>Services</h3>

{% include 'icons/issue_link.html.j2' with issue=125 %}

<table>
<tr>
<th>Name</th>
<th>Ports</th>
</tr>
{% if item.services.all %}
{% for device in item.devices.all %}
<tr>
<td></td>
<td></td>
</tr>
{% endfor%}
{% else %}
<tr>
<td colspan="2"> Nothing Found</td>
</tr>
{% endif %}
</table>

</div>

<div style="display: block; width: 100%;">
<h3>Config</h3>
<pre>{{ item.config | json_pretty }}</pre>
Expand Down

0 comments on commit b65e577

Please sign in to comment.