Skip to content

Commit

Permalink
Show host type ID on Teletraan UI (#1546)
Browse files Browse the repository at this point in the history
show host type ID on Teletraan UI
  • Loading branch information
liyaqin1 authored Mar 27, 2024
1 parent f0ec156 commit ea20331
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion deploy-board/deploy_board/templates/clusters/host_types.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
<form name="hostTypeList">
<table id="hostTypeTableId" class="table table-condensed table-striped table-hover">
<tr>
<th class="col-lg-1">ID</th>
<th class="col-lg-1">Arch</th>
<th class="col-lg-2">Abstract Name</th>
<th class="col-lg-1">Abstract Name</th>
<th class="col-lg-1">Provider Name</th>
<th class="col-lg-1">Cloud Provider</th>
<th class="col-lg-1">Core</th>
Expand All @@ -19,6 +20,7 @@
</tr>
{% for host_type in host_types %}
<tr>
<td> {{ host_type.id }} </td>
<td> {{ host_type.arch_name }} </td>
<td> {{ host_type.abstract_name }} </td>
<td> {{ host_type.provider_name }} </td>
Expand Down

0 comments on commit ea20331

Please sign in to comment.