mirror of
http://git.frickel.earth/Tysox/BOS-Pinneberg.git
synced 2025-05-21 06:24:30 +02:00
+ thw
This commit is contained in:
parent
c823c6a157
commit
cec4366416
@ -19,12 +19,14 @@ if ($result->num_rows > 0) {
|
||||
?>
|
||||
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
|
||||
<div class="mdl-card mdl-cell mdl-cell--12-col mdl-card--border mdl-card__supporting-text">
|
||||
<h4 style="text-align: center"><?php echo $row['Ort'] ." [". $row['id'];?></h4>
|
||||
<table style="margin-left: auto; margin-right: auto" class="mdl-data-table mdl-js-data-table mdl-shadow--2dp">
|
||||
<h4 style="text-align: center">Heros <?php echo $row['Ort']; ?></h4>
|
||||
<table style="margin-left: auto; margin-right: auto"
|
||||
class="mdl-data-table mdl-js-data-table mdl-shadow--2dp">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="mdl-data-table__cell--non-numeric">Fahrzeugtyp</th>
|
||||
<th>Funkrufnummer</th>
|
||||
<th class="mdl-data-table__cell--non-numeric">Funkrufnummer</th>
|
||||
<th class="mdl-data-table__cell--non-numeric">Einheit</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -38,7 +40,19 @@ if ($result->num_rows > 0) {
|
||||
?>
|
||||
<tr>
|
||||
<td class="mdl-data-table__cell--non-numeric"><?php echo $frow['Fahrzeugtyp'] ?></td>
|
||||
<td><?php echo $frow['Organistationskennung'] . " " . $row['id'] . "-" . $frow['Fahrzeugkennung'] ?></td>
|
||||
<?php if ($frow['Fahrzeugkennung'] == 0) {
|
||||
?>
|
||||
<td class="mdl-data-table__cell--non-numeric"><?php echo $frow['Organistationskennung'] ?></td>
|
||||
<?php } else if ($frow['Fahrzeugkennung'] > 0) { ?>
|
||||
<td class="mdl-data-table__cell--non-numeric"><?php echo $frow['Organistationskennung'] . " " . $row['id'] . "-" . $frow['Fahrzeugkennung'] ?></td>
|
||||
<?php } ?>
|
||||
|
||||
<td>
|
||||
<?php
|
||||
$einheit = $conn->query("SELECT `name` FROM `thw_einheit` WHERE id = " . $frow['Einheit']);
|
||||
echo($einheit)
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
@ -48,4 +62,5 @@ if ($result->num_rows > 0) {
|
||||
</table>
|
||||
</div>
|
||||
</section>
|
||||
<?php }}?>
|
||||
<?php }
|
||||
} ?>
|
Loading…
x
Reference in New Issue
Block a user