Файл: Luxe-Shop v6.0/application/views/admin/templatesadm/default/goods/index.php
Строк: 26
<style>
#cont {
width:830px;
margin-top:-20px;
}
</style><div id="cont"><? echo anchor('admin/goods/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 style="min-width:70px;">Кол-во</th>
<th style="width:55px;">Цена</th>
<th style="width:70px;">Скидка %</th>
<th>Редактировать</th>
<th>Удалить</th>
</thead>
<tbody>
<? if(count($goods)): foreach($goods as $good): ?>
<tr id="item-<? echo $good->id; ?>">
<td><? echo $good->id; ?></td>
<td><? echo $good->name; ?></td>
<td><? echo $good->count; ?></td>
<td><? echo $good->price_rub * $good->min_order?>р</td>
<td><? echo $good->discount_pct ?>%</td>
<td><? echo btn_edit('admin/goods/edit/'.$good->id); ?></td>
<td><? echo btn_delete('admin/goods/delete/'.$good->id); ?></td>
</tr>
<? endforeach; ?>
<? else: ?>
<tr>
<td colspan="9">Товары отсутствуют</td>
</tr>
<? endif; ?>
</tbody>
</table></div>