49 lines
2.1 KiB
HTML
49 lines
2.1 KiB
HTML
<template name="serverInformationModal">
|
|
<div class="modal" id="serverInformationModal" tabindex="-1" role="dialog" aria-labelledby="serverInformationModalLabel">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
<h4 class="modal-title" id="serverInformationModalLabel">Server Information</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
{{#each serverInformation}}
|
|
<table id="tblServer" class="table table-bordered table-hovered">
|
|
<tbody>
|
|
<tr>
|
|
<th>
|
|
Host
|
|
</th>
|
|
<td>
|
|
{{host}}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>
|
|
Port
|
|
</th>
|
|
<td>
|
|
{{port}}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>
|
|
AE Title
|
|
</th>
|
|
<td>
|
|
{{aeTitle}}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
|
|
</table>
|
|
{{/each}}
|
|
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template> |