Aevann 2023-02-01 16:52:46 +02:00
parent 5a9fb8f285
commit 68cff67af6
2 changed files with 2 additions and 2 deletions

View File

@ -405,7 +405,7 @@
{% endif %}
{% endif %}
{% if v %}
{% if v and (not c.ghost or v.id == c.author_id or v.admin_level) %}
<button type="button" style="margin-top:0.2rem" class="btn caction py-0 nobackground px-1 text-muted" data-bs-toggle="dropdown"><i class="fas fa-ellipsis-h fa-fw"></i></button>
<ul class="dropdown-menu">

View File

@ -37,7 +37,7 @@
<button type="button" id="delete2-{{p.id}}" class="{% if p.deleted_utc %}d-none{% endif %} list-inline-item" data-bs-toggle="modal" data-bs-dismiss="modal" data-bs-target="#deletePostModal" data-nonce="{{g.nonce}}" data-onclick="delete_postModal(this, '{{p.id}}')"><i class="fas fa-trash-alt"></i>Delete</button>
{% endif %}
{% if v %}
{% if v and (not p.ghost or v.id == p.author_id or v.admin_level) %}
<button type="button" class="list-inline-item" data-bs-toggle="dropdown"><i class="fas fa-ellipsis-h fa-fw"></i></button>
<ul class="dropdown-menu">
{% if v.admin_level >= PERMS['POST_COMMENT_MODERATION'] and p.oauth_app %}