55 lines
1.6 KiB
PHP
55 lines
1.6 KiB
PHP
<!-- Modal -->
|
|
<?php
|
|
$FlagDefID = $flagdef[0]['FlagDefID'];
|
|
$Instrumentid = $flagdef[0]['InstrumentID'];
|
|
$Flag = $flagdef[0]['Flag'];
|
|
$FlagText = $flagdef[0]['FlagText'];
|
|
$FlagDesc = $flagdef[0]['FlagDesc'];
|
|
$OnScreen = $flagdef[0]['OnScreen'];
|
|
$OnResult = $flagdef[0]['OnResult'];
|
|
$CreateDate = $flagdef[0]['CreateDate'];
|
|
?>
|
|
|
|
<div class="modal-header">
|
|
<h1 class="modal-title fs-5">Flags</h1>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
<table class="table">
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row">ID</th>
|
|
<td> <?=$FlagDefID ?> </td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Instrument</th>
|
|
<td> <?=$Instrumentid ?> </td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Flag</th>
|
|
<td> <?=$Flag ?> </td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Flag Text</th>
|
|
<td> <?=$FlagText ?> </td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Flag Desc</th>
|
|
<td> <?=$FlagDesc ?> </td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">On Screen</th>
|
|
<td> <?=$OnScreen ?> </td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">On Result</th>
|
|
<td> <?=$OnResult ?> </td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Create Date</th>
|
|
<td> <?=$CreateDate ?> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|