Файл: Luxe-Shop v6.0/application/views/admin/templatesadm/default/page/index.php
Строк: 22
<style>
#cont {
width:830px;
}
.table a {
color: #000;
}
</style>
<div id="cont"><? echo anchor('admin/page/edit','<i class="glyphicon glyphicon-plus"></i> Добавить страницу',array('class'=>'pull-right btn btn-small btn-primary')); ?>
<div class="clearfix"></div>
<table style="width:100%;margin-top:10px;font-size:11px;width:830px;"class="table table-bordered">
<thead>
<th>Заголовок</th>
<th >Изменить</th>
<th>Удалить</th>
</thead>
<tbody>
<? if(count($pages)): foreach($pages as $page): ?>
<tr>
<td><? echo anchor('admin/page/edit/'.$page->id, $page->title); ?></td>
<td><? echo btn_edit('admin/page/edit/'.$page->id); ?></td>
<td><? echo btn_delete('admin/page/delete/'.$page->id); ?></td>
</tr>
<? endforeach; ?>
<? else: ?>
<tr>
<td colspan="3">Страницы отсутствуют</td>
</tr>
<? endif; ?>
</tbody>
</table></div>