HTML fixes
parent
b552a80203
commit
f13cad57d8
|
@ -44,22 +44,22 @@
|
||||||
|
|
||||||
<!-- component events -->
|
<!-- component events -->
|
||||||
<?php if ($time_range_specified) { ?>
|
<?php if ($time_range_specified) { ?>
|
||||||
<div class="alert alert-info m-3">
|
<div class="alert alert-info m-0 mb-3 small">
|
||||||
<i class="fas fa-calendar-alt me-2"></i>Time period: <strong><?= htmlspecialchars($from_time) ?> - <?= htmlspecialchars($until_time) ?></strong>
|
<i class="fas fa-calendar-alt me-2"></i>Time period: <strong><?= htmlspecialchars($from_time) ?> - <?= htmlspecialchars($until_time) ?></strong>
|
||||||
</div>
|
</div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<div class="mb-5">
|
<div class="mb-5">
|
||||||
<?php if (!empty($components['records'])) { ?>
|
<?php if (!empty($components['records'])) { ?>
|
||||||
<div class="table-responsive">
|
<div class="table-responsive border">
|
||||||
<table class="table table-hover align-middle mb-0">
|
<table class="table table-results table-hover mb-0">
|
||||||
<thead class="table-light">
|
<thead class="table-light">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Component</th>
|
<th>component</th>
|
||||||
<th>LogLevel</th>
|
<th>log level</th>
|
||||||
<th>Time</th>
|
<th>time</th>
|
||||||
<th>Component ID</th>
|
<th>component ID</th>
|
||||||
<th>Event</th>
|
<th>event</th>
|
||||||
<th>Parameter</th>
|
<th>parameter</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -86,7 +86,7 @@
|
||||||
</div>
|
</div>
|
||||||
<?php include '../app/templates/pagination.php'; ?>
|
<?php include '../app/templates/pagination.php'; ?>
|
||||||
<?php } else { ?>
|
<?php } else { ?>
|
||||||
<div class="alert alert-info m-3">
|
<div class="alert alert-danger m-0">
|
||||||
<i class="fas fa-info-circle me-2"></i>No component events found for the specified criteria.
|
<i class="fas fa-info-circle me-2"></i>No component events found for the specified criteria.
|
||||||
</div>
|
</div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
Loading…
Reference in New Issue