backups: show the app info in contents

This commit is contained in:
Girish Ramakrishnan
2020-05-16 09:46:57 -07:00
parent f4775cc17c
commit 606fe87ca0
2 changed files with 24 additions and 26 deletions

View File

@@ -245,27 +245,32 @@
<div class="card card-large">
<div class="row">
<div class="col-md-12">
<!-- backup id copy helper -->
<input type="text" class="offscreen" aria-hidden="true" id="backupIdHelper" value="">
<p ng-show="!backups.length">No backups have been made yet</p>
<table class="table table-hover" style="margin: 0;" ng-hide="!backups.length">
<thead>
<tr>
<th width="25px">&nbsp;</th>
<th>Version</th>
<th>Contents</th>
<th>Date</th>
<th>Contents</th>
<th class="text-right" width="180px">Actions</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="backup in backups">
<td><div ng-click="listBackups.copyBackupId(backup)" class="hand" uib-tooltip="{{ listBackups.copyBackupIdDone ? 'Copied to clipboard' : 'Click to copy backup id' }}" tooltip-placement="right"><i class="fa fa-copy"></i></div></td>
<td><div>v{{ backup.packageVersion }}</div></td>
<td><div>{{ backup.dependsOn.length }} app(s)</div></td>
<td><div uib-tooltip="{{ backup.creationTime | prettyLongDate }}">{{ backup.creationTime | prettyDate }}</div></td>
<td>
<span> {{ backup.contents.length ? backup.contents.length : 'No '}} apps </span>
<span ng-show="backup.contents.length">
<span> - </span>
<span ng-repeat="app in backup.contents | limitTo: 5">
<a ng-href="/#/app/{{app.id}}/backups">{{app.label || app.fqdn}}</a><span ng-hide="$last">,</span>
</span>
<span ng-show="backup.contents.length > 5">&amp; {{ backup.contents.length - 5 }} more </span>
</span>
</td>
<td class="text-right no-wrap" style="vertical-align: bottom">
<button class="btn btn-xs btn-default" ng-click="downloadConfig(backup)" uib-tooltip="Download Backup Configuration"><i class="fas fa-file-alt"></i></button>
</td>