2018-05-31 15:48:49 +09:00
|
|
|
<h1>Unauthorized</h1>
|
|
|
|
|
|
|
|
<of-error-message [error]="error$ | async" [closable]="false"></of-error-message>
|
|
|
|
<of-block-progressbar [target]="content" [pending]="pending$ | async"></of-block-progressbar>
|
2018-04-24 14:31:20 +09:00
|
|
|
|
2018-05-28 18:06:33 +09:00
|
|
|
<p-panel #content [showHeader]="false" class="block-panel">
|
2018-06-14 14:35:59 +09:00
|
|
|
<p-table [value]="noauthProbes" selectionMode="single" dataKey="id" (onRowSelect)="select.emit($event.data)">
|
2018-04-24 14:31:20 +09:00
|
|
|
<ng-template pTemplate="header">
|
2018-05-28 18:06:33 +09:00
|
|
|
<tr>
|
2018-06-14 16:42:04 +09:00
|
|
|
<th style="width: 20em">Probe Key</th>
|
2018-05-28 18:06:33 +09:00
|
|
|
<th>Host Name</th>
|
|
|
|
<th>OS</th>
|
2018-06-14 16:42:04 +09:00
|
|
|
<th style="width: 7em">Created at</th>
|
2018-05-28 18:06:33 +09:00
|
|
|
</tr>
|
2018-04-24 14:31:20 +09:00
|
|
|
</ng-template>
|
2018-06-14 14:35:59 +09:00
|
|
|
<ng-template pTemplate="body" let-rowData>
|
|
|
|
<tr [pSelectableRow]="rowData">
|
2018-06-14 12:28:29 +09:00
|
|
|
<td>{{rowData.tempProbeKey}}</td>
|
2018-06-14 13:12:20 +09:00
|
|
|
<td>{{rowData.infraHost.infraHostOS.name}}</td>
|
2018-06-14 16:42:04 +09:00
|
|
|
<td>{{getOS(rowData)}}</td>
|
2018-05-28 18:06:33 +09:00
|
|
|
<td>{{rowData.createDate | date: 'dd/MM/yyyy'}}</td>
|
|
|
|
</tr>
|
2018-04-24 14:31:20 +09:00
|
|
|
</ng-template>
|
2018-05-28 18:06:33 +09:00
|
|
|
</p-table>
|
|
|
|
</p-panel>
|