Файл: templates/user/history.tpl
Строк: 26
<? $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">
<!-- features table wrap
inner -->
<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>IP</th>
<th>Дата</th>
</tr>
<?php foreach ($items as
$row): ?>
<tr>
<td><img
src="https://wo-ip.ru/ip/<?=$row['ip'];?>.png">
<?=$row['ip'];?></td>
<td><?=$row['created_at'];?></td>
</tr>
<?php
endforeach; ?>
</tbody>
<!-- End Table body -->
</table>
</div>
</div>
<!-- features table wrap inner -->
</div>
</div>
</div>
</section>
<? $this->stop() ?>