remove id in listing

This commit is contained in:
osaajani 2020-03-30 02:03:37 +02:00
parent 413c058ffc
commit 62c7f69395
14 changed files with 1 additions and 27 deletions

View file

@ -42,7 +42,6 @@
<table class="table table-bordered table-hover table-striped" id="table-events">
<thead>
<tr>
<th>#</th>
<th>Type</th>
<th>Date</th>
<th>Texte</th>
@ -52,7 +51,6 @@
<tbody>
<?php foreach ($events as $event) { ?>
<tr>
<td><?php $this->s($event['id']); ?></td>
<td><span class="fa fa-fw <?php echo \controllers\internals\Tool::event_type_to_icon($event['type']); ?>"></span></td>
<td><?php $this->s($event['at']); ?></td>
<td><?php $this->s($event['text']); ?></td>