index.php 1.18 KB
<h1>Серии писем</h1>
<div class="inner"><?= $this->flash->output(); ?></div>
<a class="btn btn-primary" href="<?= $this->url->get([ 'for' => 'email_templates_add' ]) ?>">Добавить</a>
<table class="table table-hover" data-url="">
    <thead>
    <tr>
        <th id="id">#</th>
        <th id="name"><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->title; ?></td>
            <td>
                <a href="<?= $this->url->get([ 'for' => 'email_templates_delete', "id"=>$item->id ]) ?>" class="action-img delete_icon" onclick="return confirm('Вы действительно хотите удалить пункт?')" title="Удалить"></a>
                <a href="<?= $this->url->get([ 'for' => 'email_templates_update', "id"=>$item->id ]) ?>" class="action-img edit-icon" title="Редактировать"></a>
            </td>
        </tr>
    <?php endforeach; ?>
    </tbody>
</table>
<a class="btn btn-primary" href="<?= $this->url->get([ 'for' => 'email_templates_add' ]) ?>">Добавить</a>