2022-03-18 19:10:59 +00:00
{% if v and v.id==p.author_id and p.private %}
< form action = "/publish/{{p.id}}" method = "post" >
< input type = "hidden" name = "formkey" , value = "{{v.formkey}}" >
< button class = "list-inline-item text-small p-0 m-0 mr-3 border-0 nobackground font-weight-bold" type = "submit" > < i class = "fas fa-globe" > < / i > Publish< / button >
< / form >
2022-03-02 00:05:30 +00:00
{% endif %}
2022-03-31 19:34:04 +00:00
{% if not p.ghost or v.id == AEVANN_ID %}< a class = "list-inline-item" href = "/votes?link={{p.fullname}}" > < i class = "fas fa-arrows-v" > < / i > Votes< / a > {% endif %}
2022-03-18 19:05:54 +00:00
2022-03-02 00:05:30 +00:00
{% if v %}
< a class = "list-inline-item text-muted d-none d-md-inline-block" role = "button" data-bs-toggle = "modal" data-bs-target = "#awardModal" onclick = "awardModal('/award_post/{{p.id}}')" > < i class = "fas fa-gift fa-fw" > < / i > Give Award< / a >
{% endif %}
< a class = "list-inline-item copy-link" role = "button" data-clipboard-text = "{% if request.host == 'rdrama.net' %}https://rdrama.gay{{p.shortlink}}{% else %}{{p.permalink}}{% endif %}" > < i class = "fas fa-copy" > < / i > Copy link< / a >
{% if v %}
< a id = "subscribe-{{p.id}}" class = "{% if p.id in v.subscribed_idlist() %}d-none{% endif %} list-inline-item" role = "button" onclick = "post_toast2(this,'/subscribe/{{p.id}}','subscribe-{{p.id}}','unsubscribe-{{p.id}}')" > < i class = "fas fa-eye" > < / i > Subscribe< / a >
< a id = "unsubscribe-{{p.id}}" class = "{% if p.id not in v.subscribed_idlist() %}d-none{% endif %} list-inline-item" role = "button" onclick = "post_toast2(this,'/unsubscribe/{{p.id}}','subscribe-{{p.id}}','unsubscribe-{{p.id}}')" > < i class = "fas fa-eye-slash" > < / i > Unsubscribe< / a >
{% endif %}
{% if v %}
< a id = "save-{{p.id}}" class = "{% if p.id in v.saved_idlist() %}d-none{% endif %} list-inline-item" role = "button" onclick = "post_toast2(this,'/save_post/{{p.id}}','save-{{p.id}}','unsave-{{p.id}}')" > < i class = "fas fa-save" > < / i > Save< / a >
< a id = "unsave-{{p.id}}" class = "{% if not p.id in v.saved_idlist() %}d-none{% endif %} list-inline-item" role = "button" onclick = "post_toast2(this,'/unsave_post/{{p.id}}','save-{{p.id}}','unsave-{{p.id}}')" > < i class = "fas fa-save" > < / i > Unsave< / a >
< a class = "list-inline-item" role = "button" data-bs-toggle = "modal" data-bs-dismiss = "modal" data-bs-target = "#reportPostModal" onclick = "report_postModal('{{p.id}}')" > < i class = "fas fa-flag" > < / i > Report< / a >
{% endif %}
{% if v and v.id==p.author_id %}
{% if request.path.startswith('/@') %}
< a id = "pin-profile-{{p.id}}" class = "{% if p.is_pinned %}d-none{% endif %} list-inline-item text-muted" role = "button" onclick = "post_toast2(this,'/pin/{{p.id}}','unpin-profile-{{p.id}}','pin-profile-{{p.id}}')" > < i class = "fas fa-thumbtack fa-rotate--45" > < / i > Pin to profile< / a >
< a id = "unpin-profile-{{p.id}}" class = "{% if not p.is_pinned %}d-none{% endif %} list-inline-item text-muted" role = "button" onclick = "post_toast2(this,'/pin/{{p.id}}','unpin-profile-{{p.id}}','pin-profile-{{p.id}}')" > < i class = "fas fa-thumbtack fa-rotate--45" > < / i > Unpin from profile< / a >
{% endif %}
< a id = "undelete2-{{p.id}}" class = "{% if not p.deleted_utc %}d-none{% endif %} list-inline-item" role = "button" onclick = "post_toast2(this,'/undelete_post/{{p.id}}', 'delete2-{{p.id}}', 'undelete2-{{p.id}}');document.getElementById('post-{{p.id}}').classList.remove('deleted')" > < i class = "fas fa-trash-alt" > < / i > Undelete< / a >
< a id = "delete2-{{p.id}}" class = "{% if p.deleted_utc %}d-none{% endif %} list-inline-item" role = "button" data-bs-toggle = "modal" data-bs-dismiss = "modal" data-bs-target = "#deletePostModal" onclick = "delete_postModal('{{p.id}}')" > < i class = "fas fa-trash-alt" > < / i > Delete< / a >
{% endif %}
{% if v %}
2022-03-06 01:53:11 +00:00
< a class = "list-inline-item" role = "button" data-bs-toggle = "dropdown" aria-expanded = "false" > < i class = "fas fa-ellipsis-h fa-fw" > < / i > < / a >
2022-03-02 00:05:30 +00:00
< ul class = "dropdown-menu" >
{% if v.admin_level %}
< a id = "distinguish-{{p.id}}" class = "dropdown-item {% if p.distinguish_level %}d-none{% endif %} list-inline-item text-info" role = "button" onclick = "post_toast2(this,'/distinguish/{{p.id}}','distinguish-{{p.id}}','undistinguish-{{p.id}}')" > < i class = "fas fa-crown" > < / i > Distinguish< / a >
< a id = "undistinguish-{{p.id}}" class = "dropdown-item {% if not p.distinguish_level %}d-none{% endif %} list-inline-item text-info" role = "button" onclick = "post_toast2(this,'/distinguish/{{p.id}}','distinguish-{{p.id}}','undistinguish-{{p.id}}')" > < i class = "fas fa-crown" > < / i > Undistinguish< / a >
{% endif %}
{% if v.admin_level > 1 %}
< a id = "pin-{{p.id}}" class = "dropdown-item {% if p.stickied %}d-none{% endif %} list-inline-item text-info" role = "button" onclick = "post_toast2(this,'/sticky/{{p.id}}','pin-{{p.id}}','unpin-{{p.id}}')" > < i class = "fas fa-thumbtack fa-rotate--45" > < / i > Pin< / a >
< a id = "unpin-{{p.id}}" class = "dropdown-item {% if not p.stickied %}d-none{% endif %} list-inline-item text-info" role = "button" onclick = "post_toast2(this,'/unsticky/{{p.id}}','pin-{{p.id}}','unpin-{{p.id}}')" > < i class = "fas fa-thumbtack fa-rotate--45" > < / i > Unpin< / a >
{% endif %}
{% if v.admin_level > 1 or v.id == p.author.id and v.club_allowed != False %}
< a id = "club-{{p.id}}" class = "dropdown-item {% if p.club %}d-none{% endif %} list-inline-item text-info" role = "button" onclick = "post_toast2(this,'/toggle_club/{{p.id}}','club-{{p.id}}','unclub-{{p.id}}')" > < i class = "fas fa-eye-slash" > < / i > Mark club< / a >
< a id = "unclub-{{p.id}}" class = "dropdown-item {% if not p.club %}d-none{% endif %} list-inline-item text-info" role = "button" onclick = "post_toast2(this,'/toggle_club/{{p.id}}','club-{{p.id}}','unclub-{{p.id}}')" > < i class = "fas fa-eye" > < / i > Unmark club< / a >
{% endif %}
{% if v.admin_level > 1 %}
{% if "/reported/" in request.path %}
{% if v.id != p.author.id %}< a class = "dropdown-item list-inline-item text-danger" role = "button" onclick = "post_toast(this,'/ban_post/{{p.id}}')" > < i class = "fas fa-ban" > < / i > Remove< / a > {% endif %}
< a class = "dropdown-item list-inline-item text-success" role = "button" onclick = "post_toast(this,'/unban_post/{{p.id}}')" > < i class = "fas fa-check" > < / i > Approve< / a >
{% else %}
{% if v.id != p.author.id %}< a id = "remove-{{p.id}}" class = "dropdown-item {% if p.is_banned %}d-none{% endif %} list-inline-item text-danger" role = "button" onclick = "post_toast2(this,'/ban_post/{{p.id}}','remove-{{p.id}}','approve-{{p.id}}')" > < i class = "fas fa-ban" > < / i > Remove< / a > {% endif %}
< a id = "approve-{{p.id}}" class = "dropdown-item {% if not p.is_banned %}d-none{% endif %} list-inline-item text-success" role = "button" onclick = "post_toast2(this,'/unban_post/{{p.id}}','remove-{{p.id}}','approve-{{p.id}}')" > < i class = "fas fa-check" > < / i > Approve< / a >
{% endif %}
{% if p.oauth_app %}
2022-03-06 01:53:11 +00:00
< a class = "dropdown-item list-inline-item" href = "{{p.oauth_app.permalink}}" > < i class = "fas fa-code" > < / i > API App< / a >
2022-03-02 00:05:30 +00:00
{% endif %}
{% endif %}
{% if v.id != p.author_id and not p.ghost %}
< a id = "unblock-{{p.id}}" class = "dropdown-item text-success list-inline-item {% if not p.is_blocking %}d-none{% endif %}" role = "button" onclick = "post_toast2(this,'/settings/unblock?username={{p.author_name}}','block-{{p.id}}','unblock-{{p.id}}')" > < i class = "fas fa-eye text-success" > < / i > Unblock user< / a >
< a id = "block-{{p.id}}" class = "dropdown-item list-inline-item text-danger {% if p.is_blocking %}d-none{% endif %}" role = "button" onclick = "post_toast2(this,'/settings/block?username={{p.author_name}}','block-{{p.id}}','unblock-{{p.id}}')" > < i class = "fas fa-eye-slash text-danger" > < / i > Block user< / a >
{% endif %}
2022-03-06 19:13:11 +00:00
{% if p.sub and v.mods(p.sub) %}
2022-03-04 17:22:40 +00:00
< a class = "dropdown-item list-inline-item text-danger" role = "button" onclick = "post_toast(this,'/kick/{{p.id}}')" > < i class = "fas fa-sign-out text-danger" > < / i > Remove< / a >
2022-03-06 19:13:11 +00:00
{% if not p.author.mods(p.sub) %}
< a id = "exile-{{p.id}}" class = "{% if p.author.exiled_from(p.sub) %}d-none{% endif %} dropdown-item list-inline-item text-danger" role = "button" onclick = "post_toast2(this,'/exile/post/{{p.id}}','exile-{{p.id}}','unexile-{{p.id}}')" > < i class = "fas fa-campfire text-danger" > < / i > Exile user< / a >
2022-03-09 02:04:37 +00:00
< a id = "unexile-{{p.id}}" class = "{% if not p.author.exiled_from(p.sub) %}d-none{% endif %} dropdown-item list-inline-item text-success" role = "button" onclick = "post_toast2(this,'/h/{{sub}}/unexile/{{p.author_id}}','exile-{{p.id}}','unexile-{{p.id}}')" > < i class = "fas fa-campfire text-success" > < / i > Unexile user< / a >
2022-03-06 19:13:11 +00:00
{% endif %}
2022-03-02 00:05:30 +00:00
{% endif %}
{% if v.id==p.author_id or v.admin_level > 1 %}
< a id = "mark-{{p.id}}" class = "dropdown-item {% if p.over_18 %}d-none{% endif %} list-inline-item text-danger" role = "button" onclick = "post_toast2(this,'/toggle_post_nsfw/{{p.id}}','mark-{{p.id}}','unmark-{{p.id}}')" > < i class = "fas fa-eye-evil" > < / i > Mark +18< / a >
< a id = "unmark-{{p.id}}" class = "dropdown-item {% if not p.over_18 %}d-none{% endif %} list-inline-item text-success" role = "button" onclick = "post_toast2(this,'/toggle_post_nsfw/{{p.id}}','mark-{{p.id}}','unmark-{{p.id}}')" > < i class = "fas fa-eye-evil" > < / i > Unmark +18< / a >
{% endif %}
{% if v.admin_level > 1 and v.id != p.author_id %}
< a id = "ban-{{p.id}}" class = "dropdown-item {% if p.author.is_suspended %}d-none{% endif %} list-inline-item text-danger" id = "exile-comment-{{p.id}}" role = "button" data-bs-toggle = "modal" data-bs-target = "#banModal" onclick = "banModal('/post/{{p.id}}', '{{p.author.id}}', '{{p.author_name}}')" > < i class = "fas fa-user-slash text-danger fa-fw" > < / i > Ban user< / a >
< a id = "unban-{{p.id}}" class = "dropdown-item {% if not p.author.is_suspended %}d-none{% endif %} list-inline-item text-danger" id = "unexile2-user-{{p.id}}" role = "button" onclick = "post_toast2(this,'/unban_user/{{p.author_id}}','ban-{{p.id}}','unban-{{p.id}}')" > < i class = "fas fa-user-slash" > < / i > Unban user< / a >
{% endif %}
< / ul >
{% endif %}