Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show aws account id on host detail UI #1236

Merged
merged 1 commit into from
Aug 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading