24 lines
820 B
HTML
24 lines
820 B
HTML
<div class="application-manager-element">
|
|
<div class="quay-spinner" ng-show="loading"></div>
|
|
|
|
<div class="container" ng-show="!loading">
|
|
<div class="side-controls">
|
|
<span class="popup-input-button" placeholder="'Application Name'" submitted="createApplication(value)">
|
|
<i class="fa fa-plus"></i> Create New Application
|
|
</span>
|
|
</div>
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<th>Application Name</th>
|
|
<th>Application URI</th>
|
|
</thead>
|
|
|
|
<tr ng-repeat="app in applications">
|
|
<td><a href="/organization/{{ organization.name }}/application/{{ app.client_id }}">{{ app.name }}</a></td>
|
|
<td><a href="{{ app.application_uri }}" ng-if="app.application_uri" target="_blank">{{ app.application_uri }}</a></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|