mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Fix locked pages in wiki (thanks @catstolker)
This commit is contained in:
parent
d828319897
commit
c21a66798f
1 changed files with 4 additions and 4 deletions
|
@ -53,6 +53,10 @@
|
|||
</form>
|
||||
</div>
|
||||
{% elif wiki_page.locked %}
|
||||
<div class="wiki-locked">
|
||||
<span>🔒 Pagina bloccata: non possono essere effettuate ulteriori modifiche.</span>
|
||||
</div>
|
||||
{% else %}
|
||||
{% if g.user %}
|
||||
<div class="wiki-edit">
|
||||
<h4>Modifica</h4>
|
||||
|
@ -63,10 +67,6 @@
|
|||
</form>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% else %}
|
||||
<div class="wiki-locked">
|
||||
<span>🔒 Pagina bloccata: non possono essere effettuate ulteriori modifiche.</span>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if wiki_page is not none %}
|
||||
{% if g.user.role == "Admin" %}
|
||||
|
|
Loading…
Reference in a new issue