index.php
935 Bytes
<div class="inner"><?= $this->flash->output(); ?></div>
<table class="table table-hover" data-url="/sort_user">
<thead>
<tr>
<th>#</th>
<th><p>Название</p></th>
<th class="table-buttons"></th>
</tr>
</thead>
<tbody id="result">
<?php foreach ($data as $item):?>
<tr>
<td><?=$item->id; ?></td>
<td><?= $item->name ?></td>
<td>
<a href="<?= $this->url->get([ 'for' => 'delete_brief_blocks', "id"=>$item->id]) ?>" class="action-img delete_icon" title="Удалить" onclick="return confirm('Вы действительно хотите удалить пункт?')"></a>
<a href="<?= $this->url->get([ 'for' => 'update_brief_blocks', "id"=>$item->id ]) ?>" class="action-img edit-icon" title="Редактировать"></a>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>