1 <cd-iscsi-tabs></cd-iscsi-tabs>
3 <cd-info-panel *ngIf="available === false"
4 title="iSCSI Targets not available"
6 <ng-container i18n>Please consult the <a href="{{docsUrl}}"
7 target="_blank">documentation</a>
8 on how to configure and enable the iSCSI Targets management functionality.</ng-container>
10 <ng-container *ngIf="status">
12 <span i18n>Available information:</span>
13 <pre>{{ status }}</pre>
18 *ngIf="available === true"
22 identifier="target_iqn"
23 forceIdentifier="true"
24 selectionType="single"
25 (updateSelection)="updateSelection($event)">
26 <div class="table-actions btn-toolbar">
27 <cd-table-actions class="btn-group"
28 [permission]="permissions.iscsi"
29 [selection]="selection"
30 [tableActions]="tableActions">
33 <button class="btn btn-light"
35 (click)="configureDiscoveryAuth()">
36 <i [ngClass]="[icons.key]"
39 <ng-container i18n>Discovery authentication</ng-container>
43 <cd-iscsi-target-details cdTableDetail
44 *ngIf="selection.hasSingleSelection"
45 [selection]="selection"
46 [settings]="settings"></cd-iscsi-target-details>