1 <ng-container *ngIf="isLoading">
3 <span i18n>Loading snapshots...</span>
8 *ngIf="isSubVolumesAvailable; else noGroupsTpl">
10 <cd-vertical-navigation title="Groups"
11 [items]="subvolumeGroupList"
12 inputIdentifier="group-filter"
13 (emitActiveItem)="selectSubVolumeGroup($event)"></cd-vertical-navigation>
15 <div class="col-sm-2 vertical-line"
16 *ngIf="subVolumes$ | async">
17 <cd-vertical-navigation title="Subvolumes"
18 [items]="subVolumesList"
19 (emitActiveItem)="selectSubVolume($event)"
20 inputIdentifier="subvol-filter"></cd-vertical-navigation>
22 <div class="col-8 vertical-line"
23 *ngIf="isSubVolumesAvailable">
24 <cd-table [data]="snapshots$ | async"
27 selectionType="single"
29 (fetchData)="fetchData()"></cd-table>
32 <ng-template #noGroupsTpl>
33 <cd-alert-panel type="info"
35 *ngIf="!isLoading">No subvolumes are present. Please create subvolumes to manage snapshots.</cd-alert-panel>