-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
1,064 additions
and
819 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
deploy-board/deploy_board/templates/accounts/account_details.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{% extends 'accounts/accounts_base.html' %} | ||
|
||
{% block breadcrumb-items %} | ||
<ul class="breadcrumb"> | ||
<li><a href="/">Home</a></li> | ||
<li><a href="/clouds/accounts">Accounts</a></li> | ||
<li class="active">{{ account.id }}</li> | ||
</ul> | ||
{% endblock %} | ||
|
||
{% block main %} | ||
<div class="panel panel-default"> | ||
<div class="panel-heading clearfix"> | ||
<h4 class="panel-title pull-left">Account Details</h4> | ||
</div> | ||
<div class="panel-body table-responsive"> | ||
<table class="table table-striped table-bordered table-condensed table-hover"> | ||
<tr> | ||
<td>ID</td> | ||
<td>{{ account.id }}</td> | ||
</tr> | ||
<tr> | ||
<td>Owner ID <span class="deployToolTip glyphicon glyphicon-question-sign" data-toggle="tooltip" title="External ID used by cloud provider. For example, AWS account ID"></span></td> | ||
<td>{{ account.data.ownerId }}</td> | ||
</tr> | ||
<tr> | ||
<td>Name</td> | ||
<td>{{ account.name }}</td> | ||
</tr> | ||
<tr> | ||
<td>Cloud Provider</td> | ||
<td>{{ account.cloudProvider }}</td> | ||
</tr> | ||
<tr> | ||
<td>Cell</td> | ||
<td>{{ account.cell }}</td> | ||
</tr> | ||
<tr> | ||
<td>Description</td> | ||
<td>{{ account.description }}</td> | ||
</tr> | ||
</table> | ||
</div> | ||
</div> | ||
|
||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.