forked from rDrama/rDrama
1
0
Fork 0

Include holed post edit in mobile admin actions.

master
Snakes 2022-06-20 11:58:58 -04:00
parent efca3f9e55
commit 35720c0a63
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
</div>
<div class="modal-body">
<ul class="list-group post-actions">
{% if request.path.startswith('/post/') and v.admin_level > 2 %}
{% if (request.path.startswith('/post/') or request.path.startswith('/h/')) and v.admin_level > 2 and p.id %}
<button class="nobackground btn btn-link btn-block btn-lg text-left text-muted" data-bs-dismiss="modal" onclick="togglePostEdit('{{p.id}}')"><i class="far fa-edit text-center text-muted mr-3"></i>Edit</button>
{% endif %}