Файл: templates/admin/shop.tpl
Строк: 36
<? $this->layout('app', ['title' => 'Кассы']) ?>
<?
$this->start('container') ?>
<section class="pt-120
pb-120 default-bg">
<div
class="container">
<div class="row
justify-content-center">
<div
class="col-xl-6 col-lg-8">
<div
class="section-title text-center"
data-animate="fadeInUp">
<h1>Кассы</h1>
</div>
</div>
</div>
<div
class="row">
<div
class="col">
<?php if(count($items) ==
0){?>
<h3
class="text-center">Пусто</h3>
<?php
} else { ?>
<div class="features-table-wrap"
data-animate="fadeInUp">
<div
class="table-responsive-lg">
<table class="features-table pt-sans text-center mb-0
table">
<tbody>
<tr>
<th>Имя</th>
<th>Статус</th>
<th> Баланс</th>
<th>
Оперaции</th>
</tr>
<?php foreach
($items as $res): ?>
<tr>
<td><?=$res['name'];?>
<br>
ID: <?=$res['id'];?>
<br>
<a
href="<?=$res['url'];?>"><?=$res['url'];?></a>
</td>
<td><center><?=$status[$res['status']];?></center></td>
<td><center><?=$res['money'];?> RUB</td>
<td>
<center>
<a
href="/admin/shop/edit?id=<?=$res['id'];?>"
title="Редактировать"
rel="tooltip"><i class="fa fa-pencil-square"
aria-hidden="true"></i></a>
<a
href="/admin/shop?del=<?=$res['id'];?>"
title="Удалить" rel="tooltip"><i
class="fa fa-archive"
aria-hidden="true"></i></a>
</center></td>
</tr>
<?php endforeach; ?>
</tbody>
<!-- End Table body
-->
</table>
</div>
</div>
<?php
} ?>
</div>
</div>
<br>
</div>
</section>
<div class="text-center">
<?php
echo $peger->display; ?>
</div>
<? $this->stop() ?>