member_webapp/@overflow/noauth-probe/component/noauth-probe-detail.component.html

18 lines
1.1 KiB
HTML
Raw Normal View History

2018-06-14 06:45:39 +00:00
<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>
2018-06-14 05:35:59 +00:00
<div class="ui-g" dir="rtl">
2018-06-14 06:45:39 +00:00
<button class="ui-button-width-fit" [disabled]="!selectedNIC" type="button" label="Accept" icon="ui-icon-check" pButton (click)="accept()"></button>
<button class="ui-button-danger ui-button-width-fit" [disabled]="!selectedNIC" type="button" label="Deny" icon="ui-icon-close"
pButton (click)="deny()"></button>
2018-06-14 05:35:59 +00:00
</div>
2018-06-14 06:45:39 +00:00
</p-panel>
<p-confirmDialog header="Confirmation" icon="fa ui-icon-warning" width="425"></p-confirmDialog>