mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
a935b2ca31
* Заморозка страницы * Bugfixes * ok
30 lines
853 B
XML
30 lines
853 B
XML
{extends "@layout.xml"}
|
|
{block title}{_banned_title}{/block}
|
|
|
|
{block header}
|
|
{_banned_header}
|
|
{/block}
|
|
|
|
{block content}
|
|
<center>
|
|
<img src="/assets/packages/static/openvk/img/oof.apng" alt="{_banned_alt}" style="width: 20%;" />
|
|
</center>
|
|
<p>
|
|
{tr("banned_1", htmlentities($thisUser->getCanonicalName()))|noescape}<br/>
|
|
{tr("banned_2", htmlentities($thisUser->getBanReason()))|noescape}
|
|
|
|
{if !$thisUser->getUnbanTime()}
|
|
{_banned_perm}
|
|
{else}
|
|
{tr("banned_until_time", $thisUser->getUnbanTime())|noescape}
|
|
{/if}
|
|
</p>
|
|
<p n:if="$thisUser->canUnbanThemself()">
|
|
<hr/>
|
|
<center><a class="button" href="/unban.php">{_banned_unban_myself}</a></center>
|
|
</p>
|
|
<hr/>
|
|
<p>
|
|
{tr("banned_3", urlencode($csrfToken))|noescape}
|
|
</p>
|
|
{/block}
|