3
0
mirror of http://git.frickel.earth/Tysox/BOS-Pinneberg.git synced 2025-05-21 11:14:30 +02:00

+ FMS-Status

This commit is contained in:
Christoph Tank 2019-10-15 15:29:37 +02:00
parent 7d67eec35b
commit 4d9e47f714
2 changed files with 10 additions and 5 deletions

View File

@ -14,12 +14,14 @@ if ($conn->connect_error) {
?> ?>
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp"> <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__supporting-text"> <div class="mdl-card mdl-cell mdl-cell--12-col mdl-card__supporting-text">
<h4 style="text-align: center">Stichwörter</h4> <h4 style="text-align: center">FMS-Status</h4>
<table style="margin-left: auto; margin-right: auto" class="mdl-data-table mdl-js-data-table mdl-shadow--2dp"> <table style="margin-left: auto; margin-right: auto" class="mdl-data-table mdl-js-data-table mdl-shadow--2dp">
<thead> <thead>
<tr> <tr>
<th class="mdl-data-table__cell--non-numeric">Kennung</th> <th class="mdl-data-table__cell--non-numeric">Status</th>
<th>Beschreibung</th> <th>Rettungsdienst</th>
<th>Feuerwehr</th>
<th>Polizei</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -32,8 +34,10 @@ if ($conn->connect_error) {
while ($frow = $stich->fetch_assoc()) { while ($frow = $stich->fetch_assoc()) {
?> ?>
<tr> <tr>
<td class="mdl-data-table__cell--non-numeric"><?php echo $frow['Einsatzstichwort'] ?></td> <td class="mdl-data-table__cell--non-numeric"><?php echo $frow['fms_status'] ?></td>
<td><?php echo $frow['Bedeutung'] ?></td> <td><?php echo $frow['fms_rt'] ?></td>
<td><?php echo $frow['fms_ff'] ?></td>
<td><?php echo $frow['fms_pol'] ?></td>
</tr> </tr>
<?php <?php
} }

View File

@ -73,6 +73,7 @@
<a href="#thw" class="mdl-layout__tab">THW</a> <a href="#thw" class="mdl-layout__tab">THW</a>
<a href="#bos" class="mdl-layout__tab">Stichwörter</a> <a href="#bos" class="mdl-layout__tab">Stichwörter</a>
<a href="#frz" class="mdl-layout__tab">Funkrufkennziffern</a> <a href="#frz" class="mdl-layout__tab">Funkrufkennziffern</a>
<a href="#fms" class="mdl-layout__tab">FMS-Status</a>
<div class="mdl-layout-spacer"></div> <div class="mdl-layout-spacer"></div>
<button onclick="window.location.href='admin/login.php'" class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon mdl--right" id="hdrbtn"> <button onclick="window.location.href='admin/login.php'" class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon mdl--right" id="hdrbtn">
<i class="material-icons">exit_to_app</i> <i class="material-icons">exit_to_app</i>