District in admin list
This commit is contained in:
parent
bb53850c3e
commit
824aa44fe2
@ -178,7 +178,9 @@
|
|||||||
<div class="container-fluid" style="margin-top:5em;">
|
<div class="container-fluid" style="margin-top:5em;">
|
||||||
<table class="table table-bordered table-striped">
|
<table class="table table-bordered table-striped">
|
||||||
<thead>
|
<thead>
|
||||||
<tr><th>id</th><th>Username</th>
|
<tr><th>id</th>
|
||||||
|
<?= ($boolSuperAdmin) ? "<th>Kreis</th>" : "" ?>
|
||||||
|
<th>Username</th>
|
||||||
<?= ($boolUserinfo) ? "<th>Alter</th><th>Transport</th>" : "" ?>
|
<?= ($boolUserinfo) ? "<th>Alter</th><th>Transport</th>" : "" ?>
|
||||||
<th>Topic</th>
|
<th>Topic</th>
|
||||||
<th>Beschreibung</th>
|
<th>Beschreibung</th>
|
||||||
@ -205,6 +207,7 @@
|
|||||||
$id = $row['lid'];
|
$id = $row['lid'];
|
||||||
echo "<tr>";
|
echo "<tr>";
|
||||||
echo "<td>".$id."</td>";
|
echo "<td>".$id."</td>";
|
||||||
|
echo ($boolSuperAdmin) ? "<td>".$row['district']."</td>" : "";
|
||||||
echo "<td>". stripslashes($row['username']) ."</td>";
|
echo "<td>". stripslashes($row['username']) ."</td>";
|
||||||
echo ($boolUserinfo) ? "<td>".$row['age']."</td><td>".$row['transport']."</td>" : "";
|
echo ($boolUserinfo) ? "<td>".$row['age']."</td><td>".$row['transport']."</td>" : "";
|
||||||
echo "<td>".$arrIcon[$row['topic']]." ".$arrTopic[$row['topic']]."</td>";
|
echo "<td>".$arrIcon[$row['topic']]." ".$arrTopic[$row['topic']]."</td>";
|
||||||
|
Loading…
Reference in New Issue
Block a user