stela/tpl/users.php

22 lines
681 B
PHP

<?=render('_header', ['title'=>'Obsluha']);?>
<h1>Obsluha</small></h1>
<?php if (count($users)) { ?>
<table class="table">
<tr><th>jméno</th><th></th></tr>
<?php foreach ($users as $item) { ?>
<tr>
<td><?=$item['name']; ?><br><small><?=$item['note']; ?></small></td>
<td><a href="/obsluha/upravit/<?=$item['id']; ?>/" class=""><span class="icon"><i class="fas fa-edit"></i></span></a> </td>
</tr>
<?php } ?>
</table>
<?php } else {
echo '<p>(nenalezeny žádné položky)</p><br>';
} ?>
<a href="/obsluha/pridat/" class="button is-primary">Přidat obsluhu</a>
<?=render('_footer');?>