member_webapp/@overflow/noauth-probe/component/noauth-probe-detail.component.html
2018-06-14 16:42:04 +09:00

19 lines
1.1 KiB
HTML

<of-error-message [error]="error$ | async" [closable]="false"></of-error-message>
<of-block-progressbar [target]="content" [pending]="pending$ | async"></of-block-progressbar>
<p-panel *ngIf="noAuthProbe" #content [showHeader]="false" class="block-panel">
<of-noauth-probe-general [noAuthProbe]="noAuthProbe"></of-noauth-probe-general>
<!-- <<of-infra-host-machine></of-infra-host-machine> -->
<of-infra-host-os [infraHostOS]="noAuthProbe.infraHost.infraHostOS"></of-infra-host-os>
<of-infra-host-ips [infraHostIPs]="noAuthProbe.infraHost.infraHostIPs" (select)="onNICSelect($event)"></of-infra-host-ips>
<div class="ui-g" dir="rtl">
<button class="ui-button-width-fit" [disabled]="!selectedNIC || selectedNIC.metaIPType.key !== 'V4'" type="button" label="Accept"
icon="ui-icon-check" pButton (click)="accept()"></button>
<button class="ui-button-danger ui-button-width-fit" [disabled]="!selectedNIC || selectedNIC.metaIPType.key !== 'V4'" type="button"
label="Deny" icon="ui-icon-close" pButton (click)="deny()"></button>
</div>
</p-panel>
<p-confirmDialog header="Confirmation" icon="fa ui-icon-warning" width="425"></p-confirmDialog>