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-phones">
<thead>
<tr>
<th>#</th>
<th>Numéro</th>
<th>Adaptateur</th>
<th style="width:5%;">Sélectionner</th>
@ -51,7 +50,6 @@
<tbody>
<?php foreach ($phones as $phone) { ?>
<tr>
<td><?php $this->s($phone['id']); ?></td>
<td><?php $this->s(\controllers\internals\Tool::phone_format($phone['number'])); ?></td>
<td><?php $this->s($phone['adapter']); ?></td>
<td><input type="checkbox" value="<?php $this->s($phone['id']); ?>" name="ids[]"></td>