Файл: Luxe-Shop v6.0/application/views/admin/templatesadm/default/categories/index.php
Строк: 23
<style>
#cont {
width:830px;
margin-top:-20px;
}
.table a {
color: #000;
}
</style>
<div id="cont"><? echo anchor('admin/categories/edit','<i class="glyphicon glyphicon-plus"></i> Добавить категорию',array('class'=>'pull-right btn btn-small btn-primary')); ?>
<div class="clearfix"></div>
<table style="width:100%;font-size:11px;margin-top:10px;width:830px;" class="table tblsort table-hover table-bordered">
<thead>
<th>ID</th>
<th>Расположение</th>
<th>Название</th>
<th style="width:55px;">Редактировать</th>
<th style="width:55px;">Удалить</th>
</thead>
<tbody>
<? if(count($categories)):
foreach($categories as $category): ?>
<tr id="item-<? echo $category->id; ?>">
<td><? echo $category->id; ?></td>
<td><? echo $category->sort; ?></td>
<td><? echo $category->title; ?></td>
<td><? echo btn_edit('admin/categories/edit/'.$category->id); ?></td>
<td><? echo btn_delete('admin/categories/delete/'.$category->id); ?></td>
</tr>
<? endforeach; ?>
<? else: ?>
<tr>
<td colspan="5" align='center'>Категории отсутствуют</td>
</tr>
<? endif; ?>
</tbody>
</table></div>