19 řádky
571 B
HTML
19 řádky
571 B
HTML
|
{% macro staff_nav(perms) %}
|
||
|
<div class="box inline-block pagination">
|
||
|
<a href="/staff/account">[Účet]</a> 
|
||
|
<a href="/staff/accounts">[Účty]</a> 
|
||
|
|
||
|
{% if perms.owner() || perms.board_config() || perms.board_banners() %}
|
||
|
<a href="/staff/boards">[Nástěnky]</a> 
|
||
|
{% endif %}
|
||
|
|
||
|
{% if perms.owner() || perms.bans() %}
|
||
|
<a href="/staff/bans">[Bany]</a> 
|
||
|
{% endif %}
|
||
|
|
||
|
{% if perms.owner() || perms.reports() %}
|
||
|
<a href="/staff/reports">[Hlášení]</a> 
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
{% endmacro %}
|