1 <ng-container *ngIf="isLoading$ | async">
3 <span i18n>Loading snapshot schedules...</span>
11 [ngbTooltip]="fullpathTpl"
12 triggers="click:blur">{{row.path | path}}</span>
14 <span *ngIf="row.active; else inactiveStatusTpl">
15 <i [ngClass]="[icons.success, icons.large]"
16 ngbTooltip="{{row.path}} is active"
17 class="text-success"></i>
20 <ng-template #inactiveStatusTpl>
21 <i [ngClass]="[icons.warning, icons.large]"
23 ngbTooltip="{{row.path}} has been deactivated"></i>
26 <ng-template #fullpathTpl>
27 <span data-toggle="tooltip"
29 class="font-monospace">{{ row.path }}
30 <cd-copy-2-clipboard-button *ngIf="row.path"
33 [showIconOnly]="true">
34 </cd-copy-2-clipboard-button>
41 [data]="snapshotSchedules$ | async"
44 selectionType="single"
46 (fetchData)="fetchData()"
47 (updateSelection)="updateSelection($event)"
49 <div class="table-actions btn-toolbar">
51 [permission]="permissions.cephfs"
52 [selection]="selection"
54 [tableActions]="tableActions"