Файл: Luxe-Shop v6.0/application/views/admin/templatesadm/premium/news/index.php
Строк: 80
<head>
<nav class="top-nav" style="
margin-top: -22px;
">
<div class="container">
<div class="nav-wrapper"><a class="page-title">Новости (<? echo count($news); ?>)</a></div>
</div>
</nav>
</head>
<div class="container">
<div class="row">
<div class="col s12 m9 l10" style="margin-top: 10px;">
<? echo anchor('admin/news/edit','Добавить новость',array('class'=>'pull-right btn btn-small btn-primary')); ?>
<table class="striped centered">
<thead>
<th>ID</th>
<th>Название</th>
<th>Дата создания</th>
<th>Время создания</th>
<th>Изменить</th>
<th>Удалить</th>
</thead>
<tbody>
<? if(count($news)): foreach($news as $new): ?>
<tr id="item-<? echo $new->id; ?>">
<td><center><a style="color: #000;text-decoration: none;" href="/admin/news/edit/<? echo $new->id; ?>"><span class="label label-default"><? echo $new->id; ?></span></a></center></td>
<td><center><a style="color: #000;text-decoration: none;" href="/admin/news/edit/<? echo $new->id; ?>"><span class="label label-primary"><? echo $new->name; ?></span></a></center></td>
<td><center><a style="color: #000;text-decoration: none;" href="/admin/news/edit/<? echo $new->id; ?>"><span class="label label-success"><? echo $new->date; ?></span></a></center></td>
<td><center><span class="label label-info"><? echo $new->time; ?></span></center></td>
<td><center><a href="/admin/news/edit/<? echo $new->id; ?>" class=" light-blue lighten-2 waves-effect waves-light btn"><i class=" icon fa-edit"></i></a></center></td>
<td><? echo btn_delete('admin/news/delete/'.$new->id); ?></td>
</tr>
<? endforeach; ?>
<? else: ?>
<tr>
<td colspan="6">Новости отсутствуют</td>
</tr>
<? endif; ?>
</tbody>
</table>
</div>
</div>
</div>