Файл: Luxe-Shop v6.0/application/views/admin/templatesadm/premium/goods/index.php
Строк: 66
<head>
<nav class="top-nav" style="
margin-top: -22px;
">
<div class="container">
<div class="nav-wrapper"><a class="page-title">Товары (<? echo count($goods); ?>)</a></div>
</div>
</nav>
</head>
<div class="container">
<div class="row">
<div class="col s12 m9 l10">
<table class="table tblsort table-hover table-bordered">
<thead>
<th>ID</th>
<th>Название</th>
<th>Кол-во</th>
<th>Цена</th>
<th>В акции</th>
<th>Изменить</th>
<th>Удалить</th>
</thead>
<tbody>
<a href="<? echo site_url('/admin/goods/edit'); ?>" class="pull-right btn btn-small btn-primary" style="margin-top: 23px;"> Добавить товар</a>
<? if(count($goods)): foreach($goods as $good): ?>
<tr draggable="true" style="opacity: 1;" id="item-<? echo $good->id; ?>">
<td><center><a style="color: #000;text-decoration: none;" href="/admin/goods/edit/<? echo $good->id; ?>"><span class="label label-default"><? echo $good->id; ?></span></a></center></td>
<td><center><a style="color: #000;text-decoration: none;" href="/admin/goods/edit/<? echo $good->id; ?>"><span class="label label-primary"><? echo $good->name; ?></span></a></center></td>
<td><center><a style="color: #000;text-decoration: none;" href="/admin/goods/edit/<? echo $good->id; ?>"><span class="label label-success"><? echo $good->count; ?></span></a></center></td>
<td><center><? echo $good->price_rub * $good->min_order ?> Руб за <span class="label label-info"><? echo $good->min_order ?></span> шт</center></td>
<td><center><? if ($good->type_Item == 1) echo "Да"; else echo "Нет"; ?></center></td>
<td><center><a href="/admin/goods/edit/<? echo $good->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/goods/delete/'.$good->id, 'class="mdi-action-delete"'); ?></center></td>
</tr>
<? endforeach; ?>
<? else: ?>
<tr>
<td colspan="7">Товары отсутствуют</td>
</tr>
<? endif; ?>
</tbody>
</table>
</div>
</div>
</div>