This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/static/directives/application-manager.html

38 lines
1.6 KiB
HTML
Raw Normal View History

<div class="application-manager-element">
<div class="feedback-bar" feedback="feedback"></div>
2015-04-01 18:49:15 +00:00
<div class="cor-loader" ng-show="loading"></div>
<div ng-show="!loading">
2015-04-20 18:00:10 +00:00
<div class="manager-header" header-title="OAuth Applications">
<span class="popup-input-button" placeholder="'Application Name'"
submitted="createApplication(value)">
<i class="fa fa-plus"></i> Create New Application
</span>
2015-04-01 18:49:15 +00:00
</div>
2015-04-20 18:00:10 +00:00
<div class="section-description-header">
2015-04-01 18:49:15 +00:00
The OAuth Applications panel allows organizations to define custom OAuth applications that can be used by internal or external customers to access <span class="registry-name"></span> data on behalf of the customers. More information about the <span class="registry-name"></span> API can be found by contacting support.
</div>
<div class="empty" ng-if="!applications.length">
<div class="empty-primary-msg">No OAuth applications defined.</div>
<div class="empty-secondary-msg">
Click the "Create New Application" button above to create a new OAuth application under
this organization.
</div>
</div>
2015-04-20 18:00:10 +00:00
<table class="cor-table" ng-show="applications.length">
<thead>
2015-04-01 18:49:15 +00:00
<td>Application Name</td>
<td>Application URI</td>
</thead>
2014-11-24 21:07:38 +00:00
<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>