Файл: wenr.online/templates/clan/inv.tpl
Строк: 22
<? $this->layout('app', ['title' => 'Заявки в клан'])
?>
<? $this->start('container') ?>
<div
class="box">
<p><a
href="/clan?r=<?=$r;?>"> « Мой клан</a> /
Заявки в клан</p>
<h4 class="text-center
inf-us">
Заявки в
клан
</h4>
<div
class="list-group">
<?php if(count($items) ==
0){?>
<div class="list-group-item
text-center">Пусто</div>
<?php }
?>
</div>
<?php foreach($items as $row):?>
<div
class="list-group">
<div
class="list-group-item">
<p><a
href="/user?id=<?=$row['user'];?>&r=<?=$r;?>">
<?=$user->get($row['user'])->nick;?>
(<?=$user->get($row['user'])->lvl;?>
ур.)</a></p>
<?php if($clan->user ==
$user->get()->user_id or $clan->zam ==
$user->get()->user_id){?>
<a
href="/clan/inv?id=<?=$row['id'];?>&yes&r=<?=$r;?>"
class="btn btn-success">Принять</a>
<a
href="/clan/inv?id=<?=$row['id'];?>&no&r=<?=$r;?>"
class="btn btn-success">Отказать</a>
<?php
} ?>
</div>
<?php endforeach;
?>
<div
class="text-center"> <?php echo $peger->display;
?> </div>
</div>
</div>
<?
$this->stop() ?>