25 lines
740 B
HTML
25 lines
740 B
HTML
|
|
<div class="container-fluid">
|
|
<div ng-show="loadStatus == LOADING" class="text-center">
|
|
<h2>Loading...</h2>
|
|
</div>
|
|
|
|
<div ng-show="loadStatus == ERROR" class="text-center">
|
|
<h2>Load error : {{ loadError }}</h2>
|
|
</div>
|
|
|
|
<div ng-show="loadStatus == LOADED" class="row">
|
|
<div ng-show="!apps.length" class="text-center">
|
|
<h2>No apps</h2>
|
|
</div>
|
|
<div class="col-lg-3 list-group-item" ng-repeat="app in apps">
|
|
<div> <a target="_blank" ng-href="{{ app.url }}"> {{ app.id }}</a> </div>
|
|
<img width="48" height="48" ng-src="{{ app.iconUrl }}"/>
|
|
<div>{{ app.installationState }}</div>
|
|
<br />
|
|
<button ng-click="removeApp(app.id)">Remove</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|