Файл: Luxe-Shop v6.0/application/views/admin/templatesadm/default/news/index.php
Строк: 35
<style>
#cont {
width:830px;
margin-top:-20px;
}
</style><div id="cont"><? echo anchor('admin/news/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>Время создания</th>
</thead>
<tbody>
<? if(count($news)): foreach($news as $new): ?>
<tr id="item-<? echo $new->id; ?>">
<td><? echo $new->id; ?></td>
<td><? echo $new->name; ?></td>
<td><? echo $new->date; ?></td>
<td><? echo $new->time; ?></td>
<td><? echo btn_edit('admin/news/edit/'.$new->id); ?></td>
<td><? echo btn_delete('admin/news/delete/'.$new->id); ?></td>
</tr>
<? endforeach; ?>
<? else: ?>
<tr>
<td colspan="4">Новости отсутствуют</td>
</tr>
<? endif; ?>
</tbody>
</table></div>