Файл: Luxe-Shop v6.0/application/views/admin/templatesadm/premium/categories/index.php
Строк: 52
<head>
<nav class="top-nav" style="
margin-top: -22px;
">
<div class="container">
<div class="nav-wrapper"><a class="page-title">Категории (<? echo count($categories); ?>)</a></div>
</div>
</nav>
</head>
<div class="container">
<div class="row">
<div class="col s12 m9 l10">
<div class="clearfix"></div>
<table style="width:100%;" class="striped centered">
<thead>
<th>ID</th>
<th>Расположение</th>
<th>Название</th>
<th>Редактировать</th>
<th>Удалить</th>
</thead>
<tbody>
<a href="<? echo site_url('/admin/categories/edit'); ?>" class="pull-right btn btn-small btn-primary" style="margin-top: 23px;"></i> Добавить категорию</a>
<? if(count($categories)):
foreach($categories as $category): ?>
<tr id="item-<? echo $category->id; ?>">
<td><center><a style="color: #000;text-decoration: none;" href="/admin/categories/edit/<? echo $category->id; ?>"><? echo $category->id; ?></a></center></td>
<td><center><a style="color: #000;text-decoration: none;" href="/admin/categories/edit/<? echo $category->id; ?>"><? echo $category->sort; ?></a></center></td>
<td><center><a style="color: #000;text-decoration: none;" href="/admin/categories/edit/<? echo $category->id; ?>"><? echo $category->title; ?></a></center></td>
<td><center>
<a href="/admin/categories/edit/<? echo $category->id; ?>" class=" light-blue lighten-2 waves-effect waves-light btn"><i class="icon fa-edit"></i></a></center></td>
<td><center><? echo btn_delete('admin/categories/delete/'.$category->id); ?></center></td></center></td>
</tr>
<? endforeach; ?>
<? else: ?>
<tr>
<td colspan="4" align='center'>Категории отсутствуют</td>
</tr>
<? endif; ?>
</tbody>
</table></div></div></div>