Skip to content

Commit

Permalink
show aws account id in host detail ui
Browse files Browse the repository at this point in the history
  • Loading branch information
liyaqin1 committed Aug 18, 2023
1 parent b7ccc04 commit 9c134bf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion deploy-board/deploy_board/templates/hosts/host_details.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@

<div id="hostDetailId" class="collapse in panel-body table-responsive">
<table class="table table-striped table-bordered table-condensed table-hover">
<tr>
<tr>
<th class="col-lg-1">AWS Acccount Id</th>
<th class="col-lg-1">Host Name</th>
<th class="col-lg-2">Host Id</th>
<th class="col-lg-2">Host Group</th>
Expand All @@ -69,6 +70,7 @@
</tr>
{% for host in hosts %}
<tr class="{{ host.state|hostStateClass}}">
<td>{{ host.accountId }}</td>
<td>{{ host.hostName }}</td>
<td>{{ host.hostId }}</td>
<td>{{ host.groupName }}</td>
Expand Down

0 comments on commit 9c134bf

Please sign in to comment.