member_webapp/src/packages/probe/component/detail/detail.component.html

45 lines
1.8 KiB
HTML
Raw Normal View History

2018-04-17 11:43:37 +00:00
<h1>Info</h1>
2018-04-16 08:28:39 +00:00
<div *ngIf="probe">
<div class="ui-g form-group">
2018-04-17 11:43:37 +00:00
<div class="ui-g-12 ui-md-6 ui-lg-4">
2018-04-16 08:28:39 +00:00
<span class="md-inputfield">
<input type="text" pInputText readonly value="{{probe.displayName}}">
<label>Alias</label>
</span>
</div>
2018-04-17 11:43:37 +00:00
<div class="ui-g-12 ui-md-6 ui-lg-4">
2018-04-16 08:28:39 +00:00
<span class="md-inputfield">
<input type="text" pInputText readonly value="{{probe.cidr}}">
<label>CIDR</label>
</span>
</div>
2018-04-17 11:43:37 +00:00
<div class="ui-g-12 ui-md-6 ui-lg-4">
2018-04-16 08:28:39 +00:00
<span class="md-inputfield">
<input type="text" pInputText readonly value="{{probe.description}}">
<label>Description</label>
</span>
</div>
2018-04-17 11:43:37 +00:00
<div class="ui-g-12 ui-md-6 ui-lg-4">
2018-04-16 08:28:39 +00:00
<span class="md-inputfield">
<input type="text" pInputText readonly value="{{probe.probeKey}}">
<label>Key</label>
</span>
</div>
2018-04-17 11:43:37 +00:00
<div class="ui-g-12 ui-md-6 ui-lg-4">
2018-04-16 08:28:39 +00:00
<span class="md-inputfield">
<input type="text" pInputText readonly value="{{probe.authorizeDate | date: 'dd/MM/yyyy'}}">
<label>Authrozied at</label>
</span>
</div>
2018-04-17 11:43:37 +00:00
<div class="ui-g-12 ui-md-6 ui-lg-4">
2018-04-16 08:28:39 +00:00
<span class="md-inputfield">
<input type="text" pInputText readonly value="{{probe.authorizeMember.name}}">
<label>Authrozied by</label>
</span>
</div>
</div>
2018-04-17 11:43:37 +00:00
<div class="ui-bottom-space-10" dir="rtl">
<button class="ui-button-danger ui-button-width-fit" type="button" label="Remove this Probe" icon="ui-icon-close" pButton (click)="onRemoveClick()"></button>
<button class="ui-button-width-fit" type="button" label="Discovery" icon="ui-icon-search" pButton (click)="onDiscoveryClick()"></button>
</div>
<p-confirmDialog header="Confirmation" icon="fa ui-icon-warning" width="425"></p-confirmDialog>