32 lines
1.2 KiB
HTML
32 lines
1.2 KiB
HTML
<!-- Bootstrap Modal for Details -->
|
|
<div class="modal fade" id="detailsModal" tabindex="-1" aria-labelledby="detailsModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog modal-xl">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="detailsModalLabel">Details for Panel: <span></span></h5>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<table class="table table-sm table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Alias</th>
|
|
<th>Panel</th>
|
|
<th>SCADA Status</th>
|
|
<th>Drawing Status</th>
|
|
<th>Equipment Type</th>
|
|
<th>Type of Conveyor</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!-- Missing/Found items will be populated here -->
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- End Bootstrap Modal for Details --> |