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

@ -40,7 +40,6 @@
<table class="table table-bordered table-hover table-striped" id="table-webhooks">
<thead>
<tr>
<th>#</th>
<th>Url</th>
<th>Type de webhook</th>
<th style="width:5%;">Sélectionner</th>
@ -49,7 +48,6 @@
<tbody>
<?php foreach ($webhooks as $webhook) { ?>
<tr>
<td><?php $this->s($webhook['id']); ?></td>
<td><?php $this->s($webhook['url']); ?></td>
<td><?php $this->s($webhook['type'] == 'send_sms' ? 'Envoi de SMS' : 'Reception de SMS'); ?></td>
<td><input type="checkbox" name="ids[]" value="<?php $this->s($webhook['id']); ?>"></td>