mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Group: Refactoring for admins (also fixes #252)
This commit is contained in:
parent
7b17328399
commit
f555c781bf
2 changed files with 24 additions and 4 deletions
|
@ -17,6 +17,26 @@
|
||||||
|
|
||||||
{* BEGIN ELEMENTS DESCRIPTION *}
|
{* BEGIN ELEMENTS DESCRIPTION *}
|
||||||
|
|
||||||
|
{block tabs}
|
||||||
|
{if $club->canBeModifiedBy($thisUser)}
|
||||||
|
<div class="tab">
|
||||||
|
<a href="/club{$club->getId()}/edit">
|
||||||
|
{_main}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div id="activetabs" class="tab">
|
||||||
|
<a id="act_tab_a" href="/club{$club->getId()}/followers">
|
||||||
|
{_followers}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="tab">
|
||||||
|
<a href="/club{$club->getId()}/stats">
|
||||||
|
{_statistics}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
{/block}
|
||||||
|
|
||||||
{block link|strip|stripHtml}
|
{block link|strip|stripHtml}
|
||||||
/id{$x->getId()}
|
/id{$x->getId()}
|
||||||
{/block}
|
{/block}
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
{extends "../@layout.xml"}
|
{extends "../@layout.xml"}
|
||||||
{block title}Статистика группы{/block}
|
{block title}{$club->getName()} » {_statistics}{/block}
|
||||||
|
|
||||||
{block header}
|
{block header}
|
||||||
<a href="{$club->getURL()}">{$club->getName()}</a> » Статистика
|
<a href="{$club->getURL()}">{$club->getName()}</a> » {_statistics}
|
||||||
{/block}
|
{/block}
|
||||||
|
|
||||||
{block content}
|
{block content}
|
||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="tab">
|
<div class="tab">
|
||||||
<a href="/club{$club->getId()}/edit">
|
<a href="/club{$club->getId()}/edit">
|
||||||
Настройки
|
{_main}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="tab">
|
<div class="tab">
|
||||||
|
@ -19,7 +19,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div id="activetabs" class="tab">
|
<div id="activetabs" class="tab">
|
||||||
<a id="act_tab_a" href="javascript:void(0)">
|
<a id="act_tab_a" href="javascript:void(0)">
|
||||||
Статистика
|
{_statistics}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue