2022-11-16 09:25:50 +00:00
{%- import 'util/macros.html' as macros with context -%}
2022-08-30 05:26:13 +00:00
{% if not request.headers.get("xhr") %}
2022-07-23 08:53:17 +00:00
{% if comment_info %}
< script >
if (location.hash != 'context')
location.hash = 'context'
< / script >
{% endif %}
{% if v %}
2022-11-15 19:14:29 +00:00
{% include "modals/award.html" %}
2022-07-23 08:53:17 +00:00
{% endif %}
2022-09-03 23:42:59 +00:00
{% include "popover.html" %}
2022-07-23 08:53:17 +00:00
{% endif %}
2022-09-17 21:45:17 +00:00
{% macro single_comment(c, level=1, collapse=False) %}
2022-07-23 08:53:17 +00:00
{% set ups=c.upvotes %}
{% set downs=c.downvotes %}
{% set score=ups-downs %}
{% if render_replies %}
2022-11-15 09:19:08 +00:00
{% set replies=c.replies(sort=sort, v=v, db=g.db) %}
2022-07-23 08:53:17 +00:00
{% endif %}
2022-10-06 00:57:08 +00:00
{% if c.is_blocking and not c.ghost or (c.is_banned or c.deleted_utc) and not (v and v.admin_level >= PERMS['POST_COMMENT_MODERATION']) and not (v and v.id==c.author_id) %}
2022-07-23 08:53:17 +00:00
< div id = "comment-{{c.id}}" class = "comment" >
2022-10-23 17:57:38 +00:00
< span class = "comment-collapse-desktop d-mob-none" style = "border-left: 2px solid #{{c.author.name_color}}" onclick = "collapse_comment('{{c.id}}', this.parentElement)" > < / span >
2022-07-23 08:53:17 +00:00
< div class = "comment-body" >
< div id = "comment-{{c.id}}-only" class = "{% if c.award_count('glowie', v) %}glow{% endif %} comment-{{c.id}}-only" >
< div class = "user-info" >
2022-08-05 20:32:36 +00:00
< span class = "comment-collapse-icon" onclick = "collapse_comment('{{c.id}}', this.parentElement.parentElement.parentElement.parentElement)" > < / span >
2022-07-23 08:53:17 +00:00
{% if standalone and c.over_18 %}< span class = "badge badge-danger" > +18< / span > {% endif %}
2022-10-13 11:55:29 +00:00
{% if c.is_banned %}removed by @{{c.ban_reason}} (Admin){% elif c.deleted_utc %}Deleted by author{% elif c.is_blocking %}You are blocking @{{c.author_name}}{% endif %}
2022-07-23 08:53:17 +00:00
< / div >
< / div >
{% if render_replies %}
2022-09-10 00:47:48 +00:00
< div id = "replies-of-{{c.fullname}}" >
{% if level< 9 or request . path . startswith ( ' / notifications ' ) % }
2022-08-19 22:36:28 +00:00
{% for reply in replies %}
2022-07-23 08:53:17 +00:00
{{single_comment(reply, level=level+1)}}
{% endfor %}
2022-09-10 00:47:48 +00:00
{% elif replies %}
2022-10-28 23:35:14 +00:00
< button type = "button" id = "btn-{{c.id}}" class = "d-mob-none btn btn-primary mt-3" onclick = "morecomments('{{c.id}}')" > More comments< / button >
2022-07-23 08:53:17 +00:00
< a class = "d-md-none" href = "{{c.morecomments}}" > More comments < i class = "fas fa-long-arrow-right ml-1" > < / i > < / a >
2022-09-10 00:47:48 +00:00
{% endif %}
< / div >
2022-07-23 08:53:17 +00:00
{% endif %}
< / div >
< / div >
{% else %}
{% set score=c.score %}
{% if v %}
{% set voted=c.voted %}
{% if not voted and v.id == c.author_id %}
{% set voted=1 %}
{% endif %}
{% else %}
{% set voted=-2 %}
{% endif %}
{% if standalone and level==1 %}
2022-10-23 15:51:46 +00:00
< div id = "post-info-{{c.id}}" class = "post-info mb-1 mr-2 {% if request.path.startswith('/notifications') %}mt-5{% else %}mt-3{% endif %}" >
2022-07-23 08:53:17 +00:00
{% if c.post and c.post.over_18 %}< span class = "badge badge-danger text-small-extra mr-1" > +18< / span > {% endif %}
< span class = "align-top" >
{% if c.post %}
{% if c.author_id==v.id and replies and is_notification_page%}
< span class = "font-weight-bold" > Comment {{'Replies' if (replies | length)>1 else 'Reply'}}: < a href = "{{c.post.permalink}}" > {{c.post.realtitle(v) | safe}}< / a > < / span >
{% elif c.post.author_id==v.id and c.level == 1 and is_notification_page%}
< span class = "font-weight-bold" > Post Reply: < a href = "{{c.post.permalink}}" > {{c.post.realtitle(v) | safe}}< / a > < / span >
{% elif is_notification_page and c.parent_submission in v.subscribed_idlist %}
< span class = "font-weight-bold" > Subscribed Thread: < a href = "{{c.post.permalink}}" > {{c.post.realtitle(v) | safe}}< / a > < / span >
{% elif is_notification_page %}
< span class = "font-weight-bold" > Username Mention: < a href = "{{c.post.permalink}}" > {{c.post.realtitle(v) | safe}}< / a > < / span >
{% else %}
< span class = "font-weight-bold" > < a href = "{{c.post.permalink}}" > {{c.post.realtitle(v) | safe}}< / a > < / span >
{% endif %}
{% if c.post.sub %}
2022-11-21 16:55:09 +00:00
< span class = "ml-1" > in < a href = "/h/{{c.post.sub}}" { % if v and v . newtab % } target = "_blank" { % endif % } > /h/{{c.post.sub}}< / a > < / span >
2022-07-23 08:53:17 +00:00
{% endif %}
{% elif c.author_id==AUTOJANNY_ID %}
< span class = "font-weight-bold" > Notification< / span >
{% else %}
2022-11-17 22:50:06 +00:00
{% if c.sentto == MODMAIL_ID %}
2022-07-23 08:53:17 +00:00
< span class = "font-weight-bold" > Sent to admins< / span >
{% else %}
< span class = "font-weight-bold" > Sent to @{{c.senttouser.username}}< / span >
{% endif %}
{% endif %}
< / span >
< / div >
{% endif %}
{% if c.parent_comment and c.parent_comment.sentto %}
{% set isreply = True %}
{% else %}
{% set isreply = False %}
{% endif %}
2022-09-17 21:45:17 +00:00
< div id = "comment-{{c.id}}" class = "anchor comment {% if standalone and level==1 %} mt-0{% endif %} {% if collapse or c.collapse_for_user(v,request.full_path) %}collapsed{% endif %}" style = "{% if isreply %}padding-left:0!important;{% else %}border-left: 2px solid {% if c.ghost %}var(--primary){% else %}#{{c.author.name_color}};{% endif %}{% endif %}" >
2022-07-23 08:53:17 +00:00
{% if not isreply %}
2022-10-23 17:57:38 +00:00
< span class = "comment-collapse-desktop d-mob-none" style = "border-left: 2px solid {% if c.ghost %}var(--primary){% else %}#{{c.author.name_color}}{% endif %}" onclick = "collapse_comment('{{c.id}}', this.parentElement)" > < / span >
2022-07-23 08:53:17 +00:00
{% endif %}
< div class = "comment-body" >
2022-09-11 09:16:45 +00:00
< div id = "{% if comment_info and comment_info.id == c.id %}context{%else%}comment-{{c.id}}-only{% endif %}" class = "{% if c.unread %}unread{% endif %} {% if c.award_count('glowie', v) %}glow{% endif %} comment-{{c.id}}-only comment-anchor {% if comment_info and comment_info.id == c.id %}context{%endif%}{% if c.is_banned %} banned{% endif %}{% if c.deleted_utc %} deleted{% endif %}" >
2022-07-23 08:53:17 +00:00
< div class = "user-info" >
< span class = "comment-collapse-icon" onclick = "collapse_comment('{{c.id}}', this.parentElement.parentElement.parentElement.parentElement)" > < / span >
{% for a in c.awards %}
< i class = "{{a.class_list}} px-1" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "{{a.title}} Award given by @{{a.user.username}}" > < / i >
{% endfor %}
{% if c.post %}
{% set sub = c.post.sub %}
{% if sub and c.author.exiled_from(sub) %}
2022-09-28 10:06:23 +00:00
< a > < i class = "fas fa-campfire text-danger" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "User has been exiled from /h/{{sub}}" > < / i > < / a >
2022-07-23 08:53:17 +00:00
{% endif %}
{% endif %}
{% if c.bannedfor %}
< i class = "fas fa-hammer-crash text-danger" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "User was banned for this comment {{c.bannedfor}}" > < / i >
{% endif %}
2022-11-05 02:12:17 +00:00
{% if c.chuddedfor %}
< i class = "fas fa-face-sleeping text-danger" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "User was chudded for this comment {{c.chuddedfor}}" > < / i >
{% endif %}
2022-11-16 09:25:50 +00:00
{% if c.active_flags(v) %}< button type = "button" class = "btn btn-primary" style = "padding:1px 5px; font-size:10px" onclick = "document.getElementById('flaggers-{{c.id}}').classList.toggle('d-none')" > {{c.active_flags(v)}} Report{{macros.plural(c.active_flags(v))}}< / button > {% endif %}
2022-07-23 08:53:17 +00:00
{% if c.over_18 %}< span class = "badge badge-danger text-small-extra mr-1" > +18< / span > {% endif %}
2022-10-06 02:24:37 +00:00
{% if v and v.admin_level >= PERMS['USER_SHADOWBAN'] and c.author.shadowbanned %}< i class = "fas fa-user-times text-admin" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = 'Shadowbanned by @{{c.author.shadowbanned}} for "{{c.author.ban_reason}}"' > < / i > {% endif %}
2022-07-23 08:53:17 +00:00
{% if c.stickied %}
< i id = 'pinned-{{c.id}}' class = "fas fa-thumbtack fa-rotate--45 text-admin" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Pinned by @{{c.stickied}}" { % if c . stickied_utc % } onmouseover = "pinned_timestamp('pinned-{{c.id}}')" data-timestamp = {{c.stickied_utc}} { % endif % } > < / i >
{% endif %}
{% if c.distinguish_level and not c.ghost %}< i class = "fas fa-broom text-admin" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "{{SITE_NAME}} Admin, speaking officially" > < / i > {% endif %}
{% if c.is_op %}< i class = "fas fa-microphone-stand text-info" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "OP" > < / i > {% endif %}
{% if c.is_bot %}< i class = "fas fa-robot text-info" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Bot" > < / i > {% endif %}
2022-08-21 14:14:30 +00:00
{% if c.is_blocking and not c.ghost %}< i class = "fas fa-user-minus text-warning" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "You're blocking this user, but you can see this comment because you're an admin" > < / i > {% endif %}
2022-07-23 08:53:17 +00:00
{% if c.is_blocked %}< i class = "fas fa-user-minus text-danger" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "This user is blocking you." > < / i > {% endif %}
{% if c.ghost %}
< span { % if c . distinguish_level % } class = "mod" { % endif % } > 👻< / span >
{% else %}
2022-08-25 20:34:05 +00:00
{% if FEATURES['PATRON_ICONS'] and c.author.patron %}
< img loading = "lazy" src = "/i/{{SITE_NAME}}/patron_badges/2{{c.author.patron}}.webp?v=1" height = "20" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "{{c.author.patron_tooltip}}" alt = "{{c.author.patron_tooltip}}" >
{% endif %}
2022-07-23 08:53:17 +00:00
{% if FEATURES['HOUSES'] and c.author.house %}
< img loading = "lazy" src = "/i/{{SITE_NAME}}/houses/{{c.author.house}}.webp?v=2000" height = "20" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "House {{c.author.house}}" alt = "House {{c.author.house}}" >
{% endif %}
{% if c.author.verified %}< i class = "fas fa-badge-check align-middle ml-1 {% if c.author.verified=='Glowiefied' %}glow{% endif %}" style = "color:{% if c.author.verifiedcolor %}#{{c.author.verifiedcolor}}{% else %}#1DA1F2{% endif %}" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "{{c.author.verified}}" > < / i >
{% endif %}
2022-10-28 23:32:31 +00:00
< a class = "user-name text-decoration-none" href = "{{c.author.url}}" data-pop-info = '{{c.author.json_popover(v) | tojson}}' onclick = 'popclick(event)' data-bs-placement = "bottom" data-bs-toggle = "popover" data-bs-trigger = "click" data-content-id = "popover" tabindex = "0" style = "color:#{{c.author.name_color}}; font-size:12px; font-weight:bold;" >
2022-08-11 07:27:08 +00:00
< div class = "profile-pic-30-wrapper" >
2022-10-29 21:42:30 +00:00
< img loading = "lazy" src = "{{c.author.profile_url}}" class = "profile-pic-30 mr-2" >
2022-08-11 07:27:08 +00:00
{% if c.author.hat_active -%}
2022-09-20 21:22:58 +00:00
< img class = "profile-pic-30-hat hat" loading = "lazy" src = "{{c.author.hat_active}}?h=7" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "{{c.author.hat_tooltip(v)}}" >
2022-08-11 07:27:08 +00:00
{%- endif %}
< / div >
2022-08-27 02:57:19 +00:00
< span { % if c . author . patron and not c . distinguish_level % } class = "patron" style = "background-color:#{{c.author.name_color}};" { % elif c . distinguish_level % } class = "mod" { % endif % } > {{c.author_name}}< / span >
2022-07-23 08:53:17 +00:00
< / a >
{% if FEATURES['PRONOUNS'] %}
< span class = "pronouns" style = "color:#{{c.author.titlecolor}};border-color:#{{c.author.titlecolor}}" > {{c.author.pronouns}}< / span >
{% endif %}
{% if c.author.customtitle %}
< bdi style = "color: #{{c.author.titlecolor}}" > {{c.author.customtitle | safe}}< / bdi >
{% endif %}
{% endif %}
{% if c.parent_comment_id and not standalone and level != 1 %}< a href = "#comment-{{c.parent_comment_id}}-only" class = "text-muted ml-2" > < i class = "fas fa-reply fa-sm fa-fw fa-flip-horizontal mr-1" > < / i > {{c.parent_comment.author_name}}< / a > {% endif %}
{% if c.notif_utc %}
< span id = "timestamp-{{c.id}}" onmouseover = "timestamp('timestamp-{{c.id}}','{{c.notif_utc}}')" data-bs-toggle = "tooltip" data-bs-placement = "bottom" class = "time-stamp" > {{c.age_string}}< / span >
{% elif c.created_utc %}
< span id = "timestamp-{{c.id}}" onmouseover = "timestamp('timestamp-{{c.id}}','{{c.created_utc}}')" data-bs-toggle = "tooltip" data-bs-placement = "bottom" class = "time-stamp" > {{c.age_string}}< / span >
{% endif %}
{% if c.edited_utc %}
< span class = "time-edited" id = "time-edit-{{c.id}}" onmouseover = "timestamp('time-edit-{{c.id}}','{{c.edited_utc}}')" > < span > · < / span > < span class = "font-italic" > Edited {{c.edited_string}}< / span > < / span >
{% endif %}
{% if c.treasure_amount and c.treasure_amount != '0' %}
{% if c.treasure_amount.startswith('l') %}
2022-08-18 20:48:14 +00:00
< img class = "treasure" loading = "lazy" alt = "treasure" src = "/i/treasure_tickets.webp" width = "20" height = "20" >
2022-07-23 08:53:17 +00:00
< em > Found {{c.treasure_amount.replace('l', '')}} Lottershe Tickets!< / em >
{% elif '-' in c.treasure_amount %}
2022-08-18 20:48:14 +00:00
< img class = "treasure" loading = "lazy" alt = "treasure" src = "/i/treasure_mimic.webp" width = "20" height = "20" >
2022-07-23 08:53:17 +00:00
< em > A Mimic Ate {{c.treasure_amount.replace('-', '')}} Coins!< / em >
{% else %}
2022-08-18 20:48:14 +00:00
< img class = "treasure" loading = "lazy" alt = "treasure" src = "/i/treasure_coins.webp" width = "20" height = "20" >
2022-07-23 08:53:17 +00:00
< em > Found {{c.treasure_amount}} Coins!< / em >
{% endif %}
{% endif %}
2022-10-30 00:36:23 +00:00
{% if c.slots_result %}
< em style = "position: relative; top: 2px; margin-left: 0.5rem" > {{c.slots_result}}< / em >
{% elif c.casino_game_id %}
{% set game_state = c.casino_game.game_state_json %}
2022-11-01 18:57:29 +00:00
< em style = "position: relative; top: 2px; margin-left: 0.5rem" > {{game_state['symbols'].replace(',','')}} {{game_state['text'].replace('procoins', 'marseybux')}}< / em >
2022-10-30 00:36:23 +00:00
{% endif %}
2022-10-30 00:40:35 +00:00
{% if c.blackjack_result %}
{{c.blackjack_html | safe}}
{% endif %}
2022-07-23 08:53:17 +00:00
{% if c.wordle_result %}
{{c.wordle_html(v) | safe}}
{% endif %}
< / div >
2022-08-11 13:09:39 +00:00
{% if c.active_flags(v) %}
2022-07-23 08:53:17 +00:00
< div id = "flaggers-{{c.id}}" class = "flaggers d-none" >
2022-09-08 17:24:00 +00:00
< strong > < i class = "far fa-fw fa-flag" > < / i > Reported by:< / strong >
2022-10-29 00:38:39 +00:00
< ul class = "mt-1 mb-0" style = "padding-left:20px;word-wrap:break-word" >
2022-07-23 08:53:17 +00:00
{% for f in c.filtered_flags(v) %}
2022-11-03 19:08:22 +00:00
< li > {% if c.ghost %}👻{% else %}< a style = "font-weight:bold" href = "{{f.user.url}}" > {{f.user.username}}< / a > {% endif %}{% if f.reason %}: {{f.realreason(v) | safe}}{% endif %} {% if v and v.admin_level >= PERMS['FLAGS_REMOVE'] %}< button type = "button" onclick = "postToastSwitch(this,'/del_report/comment/{{f.comment_id}}/{{f.user_id}}')" > [remove]< / button > {% endif %}< / li >
2022-07-23 08:53:17 +00:00
{% endfor %}
< / ul >
< / div >
{% endif %}
{% if c.is_banned and c.ban_reason %}
2022-10-13 11:55:29 +00:00
< div id = "comment-banned-warning" class = "comment-text text-removed mb-0" > removed by @{{c.ban_reason}} (Admin)< / div >
2022-07-23 08:53:17 +00:00
{% endif %}
{% if c.award_count("tilt", v) %}
< style >
@keyframes c{{c.id}}-tilt {
0% {transform: rotate(0deg);}
25% {transform: rotate({{c.award_count("tilt", v)}}deg);}
75% {transform: rotate(-{{c.award_count("tilt", v)}}deg);}
100% {transform: rotate(0deg);}
}
@media (max-width: 720px) {
@keyframes c{{c.id}}-tilt {
0% {transform: rotate(0deg);}
25% {transform: rotate({{c.award_count("tilt", v)/4}}deg);}
75% {transform: rotate(-{{c.award_count("tilt", v)/4}}deg);}
100% {transform: rotate(0deg);}
}
}
.comment-{{c.id}}-only {
animation-name: c{{c.id}}-tilt;
animation-duration: 30s !important;
animation-iteration-count: infinite !important;
animation-direction: alternate !important;
animation-timing-function: linear !important;
}
< / style >
{% endif %}
2022-09-06 04:16:41 +00:00
< div id = "comment-text-{{c.id}}" class = "comment-text mb-0 {% if c.author.agendaposter and not (c.parent_submission and c.post.sub == 'chudrama') %}agendaposter{% endif %} {% if c.author.rainbow %}rainbow-text{% endif %}" >
2022-07-23 08:53:17 +00:00
{{c.realbody(v) | safe}}
< / div >
{% if c.parent_submission %}
{% if v and v.id==c.author_id %}
< div id = "comment-edit-{{c.id}}" class = "d-none comment-write collapsed child" >
< form id = "comment-edit-form-{{c.id}}" action = "/edit_comment/{{c.id}}" method = "post" enctype = "multipart/form-data" >
2022-11-15 09:19:08 +00:00
< input type = "hidden" name = "formkey" value = "{{v|formkey}}" >
2022-08-11 11:39:38 +00:00
< textarea autocomplete = "off" { % if v . longpost % } minlength = "280" { % endif % } maxlength = "{% if v.bird %}140{% else %}10000{% endif %}" data-preview = "preview-edit-{{c.id}}" oninput = "markdown(this);charLimit('comment-edit-body-{{c.id}}','charcount-edit-{{c.id}}')" id = "comment-edit-body-{{c.id}}" data-id = "{{c.id}}" name = "body" form = "comment-edit-form-{{c.id}}" class = "comment-box form-control rounded" aria-label = "With textarea" placeholder = "Add your comment..." rows = "3" > {{c.body}}< / textarea >
2022-07-23 08:53:17 +00:00
< div class = "text-small font-weight-bold mt-1" id = "charcount-edit-{{c.id}}" style = "right: 1rem; bottom: 0.5rem; z-index: 3;" > < / div >
< div class = "comment-format" >
< small class = "btn btn-secondary format m-0" aria-hidden = "true" onclick = "commentForm('comment-edit-body-{{c.id}}');getGif()" data-bs-toggle = "modal" data-bs-target = "#gifModal" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Add GIF" > < span class = "font-weight-bolder text-uppercase" > GIF< / span > < / small >
2022-09-09 23:52:52 +00:00
< small class = "btn btn-secondary format m-0" aria-hidden = "true" onclick = "loadEmojis('comment-edit-body-{{c.id}}')" data-bs-toggle = "modal" data-bs-target = "#emojiModal" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Add Emoji" > < i class = "fas fa-smile-beam" > < / i > < / small >
2022-07-23 08:53:17 +00:00
< label class = "btn btn-secondary format m-0" for = "file-edit-reply-{{c.id}}" >
< div id = "filename-edit-reply-{{c.id}}" > < i class = "fas fa-file" > < / i > < / div >
2022-11-15 09:19:08 +00:00
< input autocomplete = "off" id = "file-edit-reply-{{c.id}}" accept = "image/*, video/*, audio/*" type = "file" multiple = "multiple" name = "file" { % if g . is_tor % } disabled { % endif % } onchange = "changename('filename-edit-reply-{{c.id}}','file-edit-reply-{{c.id}}')" hidden >
2022-07-23 08:53:17 +00:00
< / label >
< / div >
2022-11-12 18:02:02 +00:00
< button type = "button" id = "edit-btn-{{c.id}}" form = "comment-edit-form-{{c.id}}" class = "btn btn-primary ml-2 fl-r commentmob" onclick = "comment_edit('{{c.id}}');remove_dialog()" > Save Edit< / button >
2022-11-05 02:11:19 +00:00
< button type = "button" id = "cancel-edit-{{c.id}}" onclick = "toggleEdit('{{c.id}}');remove_dialog()" class = "btn btn-link text-muted ml-auto cancel-form fl-r commentmob" > Cancel< / button >
2022-07-23 08:53:17 +00:00
< / form >
< div id = "preview-edit-{{c.id}}" class = "preview mb-3 mt-5" > < / div >
2022-11-21 16:55:09 +00:00
< div class = "form-text text-small p-0 m-0" > < a href = "/formatting" { % if v and v . newtab % } target = "_blank" { % endif % } > Formatting help< / a > < / div >
2022-07-23 08:53:17 +00:00
< / div >
{% endif %}
< div id = "comment-{{c.id}}-actions" class = "comment-actions{% if voted==1 %} upvoted{% elif voted==-1 %} downvoted{% endif %}" >
2022-08-26 00:28:20 +00:00
< div class = "d-md-none mt-1" >
2022-07-23 08:53:17 +00:00
< div class = "post-actions" >
< ul class = "list-inline text-right d-flex" >
< li class = "list-inline-item mr-auto" >
2022-10-06 00:57:08 +00:00
{% if v and v.admin_level >= PERMS['POST_COMMENT_MODERATION'] %}
2022-10-28 23:35:14 +00:00
< button type = "button" data-bs-toggle = "modal" data-bs-target = "#adminModal-{{c.id}}" >
2022-07-23 08:53:17 +00:00
< i class = "fas fa-broom" > < / i >
2022-10-28 23:27:38 +00:00
< / button >
2022-07-23 08:53:17 +00:00
{% endif %}
< / li >
2022-10-29 17:24:22 +00:00
{% if v and not c.deleted_utc %}
2022-10-28 23:35:14 +00:00
< button type = "button" class = "list-inline-item mr-3 btn nobackground" onclick = "ToggleReplyBox('reply-to-{{c.id}}')" > < i class = "fas fa-reply" style = "margin-top:0.35rem" > < / i > < / button >
2022-07-23 08:53:17 +00:00
{% endif %}
< li class = "list-inline-item" >
2022-10-28 23:35:14 +00:00
< button type = "button" data-bs-toggle = "modal" data-bs-target = "#actionsModal-{{c.id}}" >
2022-11-08 10:05:07 +00:00
< i class = "fas fa-ellipsis-h" > < / i >
2022-10-28 23:27:38 +00:00
< / button >
2022-07-23 08:53:17 +00:00
< / li >
2022-10-06 08:14:32 +00:00
{% if v and request.path.startswith('/@') and v.admin_level < PERMS [ ' VIEW_VOTE_BUTTONS_ON_USER_PAGE ' ] % }
2022-07-23 08:53:17 +00:00
< li id = "voting-{{c.id}}-mobile" class = "voting list-inline-item d-md-none" >
{% if voted==1 %}
< span class = "mr-2 arrow-up comment-{{c.id}}-up active" > < / span >
{% endif %}
2022-10-13 14:44:05 +00:00
< span class = "comment-mobile-score-{{c.id}} score comment-score-{{c.id}} {% if voted==1 %}score-up{% elif voted==-1%}score-down{% endif %}{% if c.controversial %} controversial{% endif %}" { % if not c . is_banned % } data-bs-toggle = "tooltip" data-bs-placement = "top" title = "+{{ups}} | -{{downs}}" { % endif % } style = "cursor: default" > {{score}}< / span >
2022-07-23 08:53:17 +00:00
{% if voted==-1 %}
< span class = "ml-2 my-0 arrow-down comment-{{c.id}}-down active" > < / span >
{% endif %}
< / li >
{% elif v %}
< li id = "voting-{{c.id}}-mobile" class = "voting list-inline-item d-md-none" >
2022-08-30 21:45:52 +00:00
< span tabindex = "0" role = "button" onclick = "vote('comment-mobile', '{{c.id}}', '1')" class = "comment-mobile-{{c.id}}-up mx-0 pr-1 arrow-up upvote-button comment-{{c.id}}-up {% if voted==1 %}active{% endif %}" >
2022-07-23 08:53:17 +00:00
< / span >
2022-10-13 14:44:05 +00:00
< span class = "comment-mobile-score-{{c.id}} score comment-score-{{c.id}} {% if voted==1 %}score-up{% elif voted==-1%}score-down{% endif %}{% if c.controversial %} controversial{% endif %}" { % if not c . is_banned % } data-bs-toggle = "tooltip" data-bs-placement = "top" title = "+{{ups}} | -{{downs}}" { % endif % } style = "cursor: default" > {{score}}< / span >
2022-07-23 08:53:17 +00:00
2022-08-30 21:44:04 +00:00
< span { % if DISABLE_DOWNVOTES % } style = "display:None!important" { % endif % } tabindex = "0" role = "button" onclick = "vote('comment-mobile', '{{c.id}}', '-1')" class = "comment-mobile-{{c.id}}-down mx-0 pl-1 my-0 arrow-down downvote-button comment-{{c.id}}-down {% if voted==-1 %}active{% endif %}" >
2022-07-23 08:53:17 +00:00
< / span >
< / li >
{% else %}
< li id = "voting-{{c.id}}-mobile" class = "voting list-inline-item d-md-none" >
2022-11-19 21:33:59 +00:00
< span tabindex = "0" class = "arrow-{{c.id}}-mobile-up mx-0 pr-1 arrow-mobile-up" onclick = "location.href='/login?redirect={{request.full_path | urlencode}}';" >
2022-07-23 08:53:17 +00:00
< i class = "fas fa-arrow-alt-up mx-0" aria-hidden = "true" > < / i >
< / span >
2022-10-13 14:44:05 +00:00
< span class = "comment-mobile-score-{{c.id}} score{% if c.controversial %} controversial{% endif %}" { % if not c . is_banned % } data-bs-toggle = "tooltip" data-bs-placement = "top" title = "+{{ups}} | -{{downs}}" { % endif % } style = "cursor: default" > {{score}}< / span >
2022-07-23 08:53:17 +00:00
2022-11-19 21:33:59 +00:00
< span tabindex = "0" class = "arrow-{{c.id}}-mobile-down arrow-mobile-down mx-0 pl-1 my-0" onclick = "location.href='/login?redirect={{request.full_path | urlencode}}';" >
2022-07-23 08:53:17 +00:00
< i class = "fas fa-arrow-alt-down mx-0" aria-hidden = "true" > < / i >
< / span >
< / li >
{% endif %}
< / ul >
< / div >
< / div >
< ul class = "d-none d-md-flex list-inline text-right text-md-left" > < li >
2022-10-06 08:14:32 +00:00
{% if v and request.path.startswith('/@') and v.admin_level < PERMS [ ' VIEW_VOTE_BUTTONS_ON_USER_PAGE ' ] % }
2022-07-23 08:53:17 +00:00
{% if voted==1 %}
2022-10-28 23:35:14 +00:00
< button type = "button" class = "btn caction py-0 m-0 px-3 nobackground arrow-up mx-0 comment-{{c.id}}-up active" > < / button >
2022-07-23 08:53:17 +00:00
{% endif %}
{% elif v %}
2022-10-28 23:35:14 +00:00
< button type = "button" tabindex = "0" onclick = "vote('comment', '{{c.id}}', '1')" class = "comment-{{c.id}}-up btn caction py-0 m-0 px-3 nobackground arrow-up upvote-button mx-0 comment-{{c.id}}-up {% if voted==1 %}active{% endif %}" > < / button >
2022-07-23 08:53:17 +00:00
{% else %}
2022-11-19 21:33:59 +00:00
< button type = "button" tabindex = "0" class = "comment-{{c.id}}-up btn caction nobackground py-0 m-0 px-3 arrow-up" onclick = "location.href='/login?redirect={{request.full_path | urlencode}}';" > < / button >
2022-07-23 08:53:17 +00:00
{% endif %}
2022-10-13 14:44:05 +00:00
< span class = "btn caction nobackground p-0 m-0" style = "cursor: default" >
2022-09-04 23:15:37 +00:00
< span data-bs-toggle = "tooltip" data-bs-placement = "top" title = "+{{ups}} | -{{downs}}" class = "comment-score-{{c.id}} score comment-score-{{c.id}} {% if voted==1 %}score-up{% elif voted==-1%}score-down{% endif %}{% if c.controversial %} controversial{% endif %}" > {{score}}< / span >
2022-10-13 14:44:05 +00:00
< / span >
2022-07-23 08:53:17 +00:00
2022-10-06 08:14:32 +00:00
{% if v and request.path.startswith('/@') and v.admin_level < PERMS [ ' VIEW_VOTE_BUTTONS_ON_USER_PAGE ' ] % }
2022-07-23 08:53:17 +00:00
{% if voted==-1 %}
< li class = " arrow-down py-0 m-0 px-3 comment-{{c.id}}-down active" > < / li >
{% endif %}
{% elif v %}
2022-10-28 23:35:14 +00:00
< button type = "button" { % if DISABLE_DOWNVOTES % } style = "display:None!important" { % endif % } tabindex = "0" onclick = "vote('comment', '{{c.id}}', '-1')" class = "comment-{{c.id}}-down btn caction py-0 m-0 px-3 nobackground arrow-down downvote-button comment-{{c.id}}-down {% if voted==-1 %}active{% endif %}" > < / button >
2022-07-23 08:53:17 +00:00
{% else %}
2022-11-19 21:33:59 +00:00
< button type = "button" { % if DISABLE_DOWNVOTES % } style = "display:None!important" { % endif % } tabindex = "0" class = "comment-{{c.id}}-down btn caction py-0 m-0 px-3 nobackground arrow-down" onclick = "location.href='/login?redirect={{request.full_path | urlencode}}';" > < / button >
2022-07-23 08:53:17 +00:00
{% endif %}
{% if v and ((not c.ghost and v.admin_level >= PERMS['VOTES_VISIBLE']) or v.id == AEVANN_ID) %}< a href = "/votes/{{c.fullname}}" class = "btn caction nobackground px-1 text-muted" > < i class = "fas fa-arrows-v" > < / i > Votes< / a > {% endif %}
< a class = "btn caction nobackground px-1 text-muted" href = "{{c.permalink}}" > < i class = "fas fa-book-open" > < / i > Context< / a >
2022-11-11 13:52:18 +00:00
< button type = "button" class = "btn caction py-0 nobackground px-1 text-muted copy-link" data-clipboard-text = "{% if SITE == 'rdrama.net' %}https://{{BAN_EVASION_DOMAIN}}{{c.shortlink}}{% else %}{{c.permalink}}{% endif %}" > < i class = "fas fa-copy" > < / i > Copy link< / button >
2022-07-23 08:53:17 +00:00
{% if v %}
2022-10-29 17:24:22 +00:00
{% if not c.deleted_utc %}
< button type = "button" class = "btn caction py-0 nobackground px-1 text-muted" onclick = "ToggleReplyBox('reply-to-{{c.id}}')" > < i class = "fas fa-reply" aria-hidden = "true" > < / i > Reply< / button >
{% endif %}
2022-07-23 08:53:17 +00:00
2022-10-28 23:35:14 +00:00
< button type = "button" class = "btn caction py-0 nobackground px-1 text-muted" data-bs-toggle = "modal" data-bs-target = "#reportCommentModal" onclick = "report_commentModal('{{c.id}}','{{c.author_name}}',)" > < i class = "fas fa-flag fa-fw" > < / i > Report< / button >
2022-07-23 08:53:17 +00:00
{% if FEATURES['AWARDS'] -%}
2022-10-28 23:35:14 +00:00
< button type = "button" class = "btn caction py-0 nobackground px-1 text-muted" data-bs-toggle = "modal" data-bs-target = "#awardModal" data-url = "/award/comment/{{c.id}}" onclick = "document.getElementById('giveaward').dataset.action = this.dataset.url" > < i class = "fas fa-gift" aria-hidden = "true" > < / i > Give Award< / button >
2022-07-23 08:53:17 +00:00
{%- endif %}
2022-11-03 19:08:22 +00:00
< button type = "button" id = "unsave-{{c.id}}" class = "btn caction py-0 nobackground px-1 {% if c.id in v.saved_comment_idlist %}d-md-inline-block{% endif %} text-muted d-none" onclick = "postToastSwitch(this,'/unsave_comment/{{c.id}}','save-{{c.id}}','unsave-{{c.id}}','d-md-inline-block')" > < i class = "fas fa-save" > < / i > Unsave< / button >
2022-07-23 08:53:17 +00:00
2022-11-03 19:08:22 +00:00
< button type = "button" id = "save-{{c.id}}" class = "btn caction py-0 nobackground px-1 {% if c.id not in v.saved_comment_idlist %}d-md-inline-block{% endif %} text-muted d-none" onclick = "postToastSwitch(this,'/save_comment/{{c.id}}','save-{{c.id}}','unsave-{{c.id}}','d-md-inline-block')" > < i class = "fas fa-save" > < / i > Save< / button >
2022-07-23 08:53:17 +00:00
{% endif %}
{% if c.parent_submission %}
{% if v and c.author_id == v.id %}
2022-10-28 23:35:14 +00:00
< button type = "button" class = "btn caction py-0 nobackground px-1 text-muted" onclick = "toggleEdit('{{c.id}}')" > < i class = "fas fa-edit fa-fw" > < / i > Edit< / button >
2022-07-23 08:53:17 +00:00
2022-11-03 19:08:22 +00:00
< button type = "button" id = "undelete-{{c.id}}" class = "btn caction py-0 nobackground px-1 text-muted {% if not c.deleted_utc %}d-none{% endif %}" onclick = "postToastSwitch(this,'/undelete/comment/{{c.id}}','delete-{{c.id}}','undelete-{{c.id}}','d-none');document.getElementById('comment-{{c.id}}').classList.remove('deleted')" > < i class = "fas fa-trash-alt fa-fw" > < / i > Undelete< / button >
2022-07-23 08:53:17 +00:00
2022-11-18 21:27:53 +00:00
< button type = "button" id = "delete-{{c.id}}" class = "btn caction py-0 nobackground px-1 text-muted {% if c.deleted_utc %}d-none{% endif %}" data-bs-toggle = "modal" data-bs-target = "#deleteCommentModal" onclick = "delete_commentModal(this, '{{c.id}}')" > < i class = "fas fa-trash-alt fa-fw" > < / i > Delete< / button >
2022-07-23 08:53:17 +00:00
{% elif v and c.body %}
2022-10-28 23:35:14 +00:00
< button type = "button" class = "btn caction py-0 nobackground px-1 text-muted" onclick = "expandMarkdown('{{c.id}}','c')" > < i class = "fas text-expand-icon-{{c.id}} fa-expand-alt" > < / i > < span class = "expand-text-c-{{c.id}}" > View source< / span > < / button >
2022-07-23 08:53:17 +00:00
{% endif %}
{% endif %}
{% if v %}
2022-10-28 23:35:14 +00:00
< button type = "button" style = "margin-top:0.2rem" class = "btn caction py-0 nobackground px-1 text-muted" data-bs-toggle = "dropdown" aria-expanded = "false" > < i class = "fas fa-ellipsis-h fa-fw" > < / i > < / button >
2022-07-23 08:53:17 +00:00
< ul class = "dropdown-menu" >
2022-10-06 09:41:03 +00:00
{% if v.admin_level >= PERMS['POST_COMMENT_DISTINGUISH'] and (v.id == c.author_id or v.admin_level >= PERMS['POST_COMMENT_MODERATION']) %}
2022-11-03 19:08:22 +00:00
< button type = "button" id = "undistinguish-{{c.id}}" class = "dropdown-item list-inline-item d-none {% if c.distinguish_level %}d-md-block{% endif %} text-info" onclick = "postToastSwitch(this,'/distinguish_comment/{{c.id}}','distinguish-{{c.id}}','undistinguish-{{c.id}}','d-md-block')" > < i class = "fas fa-id-badge text-info fa-fw" > < / i > Undistinguish< / button >
< button type = "button" id = "distinguish-{{c.id}}" class = "dropdown-item list-inline-item d-none {% if not c.distinguish_level %}d-md-block{% endif %} text-info" onclick = "postToastSwitch(this,'/distinguish_comment/{{c.id}}','distinguish-{{c.id}}','undistinguish-{{c.id}}','d-md-block')" > < i class = "fas fa-id-badge text-info fa-fw" > < / i > Distinguish< / button >
2022-07-23 08:53:17 +00:00
{% endif %}
{% if v.id != c.author_id and not c.ghost %}
2022-11-05 02:11:19 +00:00
< button type = "button" id = "unblock-{{c.id}}" class = "dropdown-item text-success list-inline-item {% if not c.is_blocking %}d-none{% endif %}" onclick = "postToastSwitch(this,'/settings/unblock?username={{c.author.username}}','block-{{c.id}}','unblock-{{c.id}}','d-none')" > < i class = "fas fa-eye text-success" > < / i > Unblock user< / button >
2022-07-23 08:53:17 +00:00
2022-11-05 02:11:19 +00:00
< button type = "button" id = "block-{{c.id}}" class = "dropdown-item list-inline-item text-danger {% if c.is_blocking %}d-none{% endif %}" onclick = "postToastSwitch(this,'/settings/block?username={{c.author.username}}','block-{{c.id}}','unblock-{{c.id}}','d-none')" > < i class = "fas fa-eye-slash text-danger" > < / i > Block user< / button >
2022-07-23 08:53:17 +00:00
{% endif %}
{% if c.post %}
{% set url = "" %}
2022-10-06 00:57:08 +00:00
{% if v.admin_level >= PERMS['POST_COMMENT_MODERATION'] %}
2022-07-23 08:53:17 +00:00
{% set url = "sticky_comment" %}
{% elif v.id == c.post.author_id %}
{% set url = "pin_comment" %}
{% elif c.post.sub and v.mods(c.post.sub) %}
{% set url = "mod_pin" %}
{% endif %}
{% if url != "" %}
2022-11-03 19:08:22 +00:00
< button type = "button" id = "unpin-{{c.id}}" class = "dropdown-item list-inline-item {% if c.stickied %}d-md-block{% endif %} text-muted d-none text-info" data-bs-dismiss = "modal" data-bs-target = "#actionsModal-{{c.id}}" onclick = "postToastSwitch(this,'/un{{url}}/{{c.id}}','pin-{{c.id}}','unpin-{{c.id}}','d-md-block')" > < i class = "fas fa-thumbtack fa-rotate--45 text-info fa-fw" > < / i > Unpin< / button >
2022-07-23 08:53:17 +00:00
2022-11-03 19:08:22 +00:00
< button type = "button" id = "pin-{{c.id}}" class = "dropdown-item list-inline-item {% if not c.stickied %}d-md-block{% endif %} text-muted d-none text-info" data-bs-dismiss = "modal" data-bs-target = "#actionsModal-{{c.id}}" onclick = "postToastSwitch(this,'/{{url}}/{{c.id}}','pin-{{c.id}}','unpin-{{c.id}}','d-md-block')" > < i class = "fas fa-thumbtack fa-rotate--45 text-info fa-fw" > < / i > Pin< / button >
2022-07-23 08:53:17 +00:00
{% endif %}
{% endif %}
2022-10-06 00:57:08 +00:00
{% if v.admin_level >= PERMS['POST_COMMENT_MODERATION'] %}
2022-10-28 23:35:14 +00:00
< button type = "button" id = "approve-{{c.id}}" class = "dropdown-item list-inline-item d-none {% if c.is_banned or request.path == '/admin/reported/comments' %}d-md-block{% endif %} text-success" onclick = "approveComment(this,'{{c.id}}','approve-{{c.id}}','remove-{{c.id}}','d-md-block')" > < i class = "fas fa-check text-success fa-fw" > < / i > Approve< / button >
2022-11-01 09:01:51 +00:00
< button type = "button" id = "remove-{{c.id}}" class = "dropdown-item list-inline-item d-none {% if not c.is_banned %}d-md-block{% endif %} text-danger" onclick = "removeComment(this,'{{c.id}}','approve-{{c.id}}','remove-{{c.id}}','d-md-block')" > < i class = "fas fa-ban text-danger fa-fw" > < / i > Remove< / button >
2022-07-23 08:53:17 +00:00
{% endif %}
{% if c.post %}
{% set sub = c.post.sub %}
{% if sub and v.mods(sub) and not c.author.mods(sub) %}
2022-11-03 19:08:22 +00:00
< button type = "button" id = "exile-{{c.id}}" class = "d-none {% if not c.author.exiled_from(sub) %}d-md-block{% endif %} dropdown-item list-inline-item text-danger" onclick = "postToastSwitch(this,'/exile/comment/{{c.id}}','exile-{{c.id}}','unexile-{{c.id}}','d-none')" > < i class = "fas fa-campfire text-danger fa-fw" > < / i > Exile user< / button >
< button type = "button" id = "unexile-{{c.id}}" class = "d-none {% if c.author.exiled_from(sub) %}d-md-block{% endif %} dropdown-item list-inline-item text-success" onclick = "postToastSwitch(this,'/h/{{sub}}/unexile/{{c.author_id}}','exile-{{c.id}}','unexile-{{c.id}}','d-none')" > < i class = "fas fa-campfire text-success fa-fw" > < / i > Unexile user< / button >
2022-07-23 08:53:17 +00:00
{% endif %}
{% endif %}
2022-10-06 00:57:08 +00:00
{% if c.parent_submission and (c.author_id==v.id or v.admin_level >= PERMS['POST_COMMENT_MODERATION'] or (c.post.sub and v.mods(c.post.sub))) %}
2022-11-03 19:08:22 +00:00
< button type = "button" id = "unmark-{{c.id}}" class = "dropdown-item list-inline-item d-none {% if c.over_18 %}d-md-block{% endif %} text-danger" onclick = "postToastSwitch(this,'/toggle_comment_nsfw/{{c.id}}','mark-{{c.id}}','unmark-{{c.id}}','d-md-block')" > < i class = "fas fa-eye-evil text-danger fa-fw" > < / i > Unmark +18< / button >
< button type = "button" id = "mark-{{c.id}}" class = "dropdown-item list-inline-item d-none {% if not c.over_18 %}d-md-block{% endif %} text-danger" onclick = "postToastSwitch(this,'/toggle_comment_nsfw/{{c.id}}','mark-{{c.id}}','unmark-{{c.id}}','d-md-block')" > < i class = "fas fa-eye-evil text-danger fa-fw" > < / i > Mark +18< / button >
2022-07-23 08:53:17 +00:00
{% endif %}
2022-10-06 02:24:37 +00:00
{% if v.admin_level >= PERMS['USER_BAN'] and v.id != c.author_id %}
2022-11-05 02:12:17 +00:00
< button type = "button" id = "unban-{{c.fullname}}" class = "dropdown-item list-inline-item d-none {% if c.author.is_suspended %}d-md-block{% endif %} text-success" onclick = "postToastSwitch(this,'/unban_user/{{c.author_id}}','ban-{{c.fullname}}','unban-{{c.fullname}}','d-md-block')" > < i class = "fas fa-user-slash text-success fa-fw" > < / i > Unban user< / button >
< button type = "button" id = "ban-{{c.fullname}}" class = "dropdown-item list-inline-item d-none {% if not c.author.is_suspended %}d-md-block{% endif %} text-danger" data-bs-toggle = "modal" data-bs-target = "#banModal" onclick = "banModal('/comment/{{c.id}}', '{{c.author.id}}', '{{c.author_name}}', '{{c.fullname}}','d-md-block')" > < i class = "fas fa-user-slash text-danger fa-fw" > < / i > Ban user< / button >
{% endif %}
{% if v.admin_level >= PERMS['USER_AGENDAPOSTER'] and v.id != c.author_id %}
< button type = "button" id = "unchud-{{c.fullname}}" class = "dropdown-item list-inline-item d-none {% if c.author.agendaposter %}d-md-block{% endif %} text-success" onclick = "postToastSwitch(this,'/unagendaposter/{{c.author_id}}','chud-{{c.fullname}}','unchud-{{c.fullname}}','d-md-block')" > < i class = "fas fa-face-sleeping text-success fa-fw" > < / i > Unchud user< / button >
< button type = "button" id = "chud-{{c.fullname}}" class = "dropdown-item list-inline-item d-none {% if not c.author.agendaposter %}d-md-block{% endif %} text-danger" data-bs-toggle = "modal" data-bs-target = "#chudModal" onclick = "chudModal('/comment/{{c.id}}', '{{c.author.id}}', '{{c.author_name}}', '{{c.fullname}}','d-md-block')" > < i class = "fas fa-face-sleeping text-danger fa-fw" > < / i > Chud user< / button >
2022-07-23 08:53:17 +00:00
{% endif %}
2022-10-06 07:40:36 +00:00
{% if v.admin_level >= PERMS['APPS_MODERATION'] and c.oauth_app %}
2022-10-23 17:57:38 +00:00
< a href = "{{c.oauth_app.permalink}}/comments" class = "dropdown-item list-inline-item d-mob-none text-primary" > < i class = "fas fa-code text-primary fa-fw" > < / i > API App< / a >
2022-07-23 08:53:17 +00:00
{% endif %}
< / ul >
{% endif %}
< / li >
< / ul >
< / div >
{% endif %}
< / div >
2022-09-25 02:32:51 +00:00
{% if v and v.id != c.author_id and c.body and not (c.post and c.post.club and not v.paid_dues) %}
< div autocomplete = "off" class = "markdown d-none card border my-2 p-3 comment-box form-control rounded" id = "markdown-{{c.id}}" readonly > {{c.body.strip()}}< / div >
2022-07-23 08:53:17 +00:00
{% endif %}
< div id = "reply-to-{{c.id}}" class = "d-none" >
< div id = "comment-form-space-{{c.fullname}}" class = "comment-write collapsed child" >
2022-09-05 22:52:22 +00:00
< form id = "reply-to-c_{{c.id}}" action = "/comment" method = "post" enctype = "multipart/form-data" >
2022-11-15 09:19:08 +00:00
< input type = "hidden" name = "formkey" value = "{{v|formkey}}" >
2022-07-23 08:53:17 +00:00
< input type = "hidden" name = "parent_fullname" value = "{{c.fullname}}" >
< input autocomplete = "off" id = "reply-form-submission-{{c.fullname}}" type = "hidden" name = "submission" value = "{{c.post.id}}" >
2022-11-18 20:53:54 +00:00
< textarea required autocomplete = "off" { % if v . longpost % } minlength = "280" { % else % } minlength = "1" { % endif % } maxlength = "{% if v.bird %}140{% else %}10000{% endif %}" data-preview = "form-preview-{{c.fullname}}" oninput = "markdown(this);charLimit('reply-form-body-{{c.fullname}}','charcount-{{c.fullname}}')" id = "reply-form-body-{{c.fullname}}" data-fullname = "{{c.fullname}}" name = "body" form = "reply-to-c_{{c.id}}" class = "comment-box form-control rounded" aria-label = "With textarea" placeholder = "Add your comment..." rows = "3" > < / textarea >
2022-07-23 08:53:17 +00:00
2022-11-18 20:53:54 +00:00
< div class = "text-small font-weight-bold mt-1" id = "charcount-{{c.fullname}}" style = "right: 1rem; bottom: 0.5rem; z-index: 3;" > < / div >
2022-07-23 08:53:17 +00:00
< div class = "comment-format" id = "comment-format-bar-{{c.id}}" >
< label class = "btn btn-secondary format m-0" for = "gif-reply-btn-{{c.fullname}}" onclick = "commentForm('reply-form-body-{{c.fullname}}');getGif()" aria-hidden = "true" data-bs-toggle = "modal" data-bs-target = "#gifModal" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Add GIF" >
< span id = "gif-reply-btn-{{c.fullname}}" class = "font-weight-bolder text-uppercase" > GIF< / span >
< / label >
< label class = "btn btn-secondary format m-0" for = "gif-reply-btn-{{c.fullname}}" onclick = "loadEmojis('reply-form-body-{{c.fullname}}')" aria-hidden = "true" data-bs-toggle = "modal" data-bs-target = "#emojiModal" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Add Emoji" >
2022-09-09 23:52:52 +00:00
< i id = "emoji-reply-btn-{{c.fullname}}" class = "fas fa-smile-beam" > < / i >
2022-07-23 08:53:17 +00:00
< / label >
< label class = "btn btn-secondary format m-0" for = "file-upload-reply-{{c.fullname}}" >
< div id = "filename-show-reply-{{c.fullname}}" > < i class = "fas fa-file" > < / i > < / div >
2022-11-15 09:19:08 +00:00
< input autocomplete = "off" id = "file-upload-reply-{{c.fullname}}" accept = "image/*, video/*, audio/*" type = "file" multiple = "multiple" name = "file" { % if g . is_tor % } disabled { % endif % } onchange = "changename('filename-show-reply-{{c.fullname}}','file-upload-reply-{{c.fullname}}')" hidden >
2022-07-23 08:53:17 +00:00
< / label >
< / div >
2022-10-28 23:35:14 +00:00
< button type = "button" id = "save-reply-to-{{c.fullname}}" class = "btn btn-primary ml-2 fl-r commentmob" onclick = "post_comment('{{c.fullname}}', 'reply-to-{{c.id}}');remove_dialog()" > Comment< / button >
2022-10-28 22:51:10 +00:00
< button type = "button" onclick = "document.getElementById('reply-to-{{c.id}}').classList.add('d-none');remove_dialog()" class = "btn btn-link text-muted ml-auto cancel-form fl-r commentmob" > Cancel< / button >
2022-07-23 08:53:17 +00:00
< / form >
2022-07-23 09:19:47 +00:00
< div id = "form-preview-{{c.fullname}}" class = "preview mb-3 mt-5" > < / div >
2022-11-21 16:55:09 +00:00
< div class = "form-text text-small p-0 m-0" > < a href = "/formatting" { % if v and v . newtab % } target = "_blank" { % endif % } > Formatting help< / a > < / div >
2022-07-23 08:53:17 +00:00
< / div >
< / div >
{% if request.path.startswith('/transfers') %}
2022-10-14 15:31:35 +00:00
< a href = "{{c.log_link}}" > < i class = "far fa-link ml-1 text-muted" > < / i > < / a >
2022-10-28 23:35:14 +00:00
< button type = "button" class = "copy-link ml-3" data-clipboard-text = "{{c.log_link}}" > < i class = "far fa-copy text-muted" > < / i > < / button >
2022-07-23 08:53:17 +00:00
{% endif %}
{% if render_replies %}
2022-09-10 00:47:48 +00:00
< div id = "replies-of-{{c.fullname}}" >
2022-09-23 13:12:20 +00:00
{% if request.path.startswith('/notifications/') and replies|length > 8 %}
2022-09-17 21:45:17 +00:00
{% for reply in replies %}
{{single_comment(reply, level=level+1, collapse=(not reply.unread and loop.index != replies|length))}}
{% endfor %}
{% elif request.path.startswith('/notifications') or level < 9 % }
2022-08-19 22:36:28 +00:00
{% for reply in replies %}
2022-07-23 08:53:17 +00:00
{{single_comment(reply, level=level+1)}}
{% endfor %}
2022-09-10 00:47:48 +00:00
{% elif replies %}
2022-10-28 23:35:14 +00:00
< button type = "button" id = "btn-{{c.id}}" class = "d-mob-none btn btn-primary mt-3" onclick = "morecomments('{{c.id}}')" > More comments< / button >
2022-07-23 08:53:17 +00:00
< a class = "d-md-none" href = "{{c.morecomments}}" > More comments < i class = "fas fa-long-arrow-right ml-1" > < / i > < / a >
2022-09-10 00:47:48 +00:00
{% endif %}
< / div >
2022-07-23 08:53:17 +00:00
{% if request.path.startswith('/notifications') and c.level == 1 and c.sentto and not c.parent_submission and c.author_id != AUTOJANNY_ID %}
2022-11-17 22:50:06 +00:00
{% if (v and v.admin_level >= PERMS['USER_BAN']) and (c.sentto == MODMAIL_ID) %}
2022-11-14 17:06:59 +00:00
< button type = "button" class = "btn btn-danger mr-3 {% if c.author.is_muted %}d-none{% endif %}" id = "mute-user-{{c.id}}" onclick = "postToastSwitch(this,'/mute_user/{{c.author.id}}','mute-user-{{c.id}}','unmute-user-{{c.id}}','d-none')" > Mute< / button >
< button type = "button" class = "btn btn-primary mr-3 {% if not c.author.is_muted %}d-none{% endif %}" id = "unmute-user-{{c.id}}" onclick = "postToastSwitch(this,'/unmute_user/{{c.author.id}}','mute-user-{{c.id}}','unmute-user-{{c.id}}','d-none')" > Unmute< / button >
2022-09-01 21:29:27 +00:00
{% endif %}
2022-11-13 12:18:01 +00:00
< button type = "button" class = "btn btn-primary nobackground" onclick = "ToggleReplyBox('reply-message-{{c.id}}')" > Reply< / button >
2022-07-23 08:53:17 +00:00
< div id = "reply-message-{{c.id}}" class = "d-none" >
< div id = "comment-form-space-{{c.id}}" class = "comment-write collapsed child" >
< form id = "reply-to-message-{{c.id}}" action = "/reply" method = "post" class = "input-group" enctype = "multipart/form-data" >
2022-11-15 09:19:08 +00:00
< input type = "hidden" name = "formkey" value = "{{v|formkey}}" >
2022-09-05 22:52:22 +00:00
< textarea required autocomplete = "off" minlength = "1" maxlength = "10000" name = "body" form = "reply-to-c_{{c.id}}" data-id = "{{c.id}}" class = "comment-box form-control rounded" id = "reply-form-body-{{c.id}}" aria-label = "With textarea" rows = "3" data-preview = "message-reply-{{c.id}}" oninput = "markdown(this)" > < / textarea >
2022-07-23 08:53:17 +00:00
< div class = "comment-format" id = "comment-format-bar-{{c.id}}" >
2022-09-09 23:52:52 +00:00
< div onclick = "loadEmojis('reply-form-body-{{c.id}}')" class = "btn btn-secondary m-0 mt-3 mr-1" aria-hidden = "true" data-bs-toggle = "modal" data-bs-target = "#emojiModal" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Add Emoji" > < i class = "fas fa-smile-beam" > < / i > < / div >
2022-07-23 08:53:17 +00:00
2022-11-17 22:50:06 +00:00
{% if c.sentto == MODMAIL_ID %}
2022-07-23 08:53:17 +00:00
< label class = "btn btn-secondary m-0 mt-3" for = "file-upload" >
< div id = "filename" > < i class = "fas fa-file" > < / i > < / div >
2022-11-15 09:19:08 +00:00
< input autocomplete = "off" id = "file-upload" accept = "image/*, video/*, audio/*" type = "file" name = "file" multiple = "multiple" { % if g . is_tor % } disabled { % endif % } onchange = "changename('filename','file-upload')" hidden >
2022-07-23 08:53:17 +00:00
< / label >
{% endif %}
< / div >
2022-10-28 22:51:10 +00:00
< button type = "button" onclick = "document.getElementById('reply-message-{{c.id}}').classList.add('d-none');remove_dialog()" class = "btn btn-link text-muted ml-auto cancel-form" > Cancel< / button >
2022-10-28 23:35:14 +00:00
< button type = "button" id = "save-reply-to-{{c.id}}" class = "btn btn-primary ml-2" onclick = "post_reply('{{c.id}}');remove_dialog()" > Reply< / button >
2022-07-23 08:53:17 +00:00
< / form >
< div id = "message-reply-{{c.id}}" class = "preview mt-2" > < / div >
< / div >
< / div >
{% endif %}
{% else %}
2022-07-23 09:08:02 +00:00
< div id = "replies-of-{{c.fullname}}" > < / div >
2022-07-23 08:53:17 +00:00
{% endif %}
< / div >
< div class = "modal fade d-md-none" id = "actionsModal-{{c.id}}" tabindex = "-1" role = "dialog" aria-labelledby = "actionsModalTitle" aria-hidden = "true" >
< div class = "modal-dialog modal-dialog-centered" role = "document" >
< div class = "modal-content" >
< div class = "modal-header" >
2022-10-29 00:55:49 +00:00
< h6 class = "modal-title" > More options< / h6 >
2022-10-28 23:35:14 +00:00
< button type = "button" class = "close" data-bs-dismiss = "modal" aria-label = "Close" >
2022-09-08 17:24:00 +00:00
< span aria-hidden = "true" > < i class = "far fa-times" > < / i > < / span >
2022-07-23 08:53:17 +00:00
< / button >
< / div >
< div class = "modal-body" >
< ul class = "list-group comment-actions" >
2022-08-24 21:12:22 +00:00
{% if v and ((not c.ghost and v.admin_level >= PERMS['VOTES_VISIBLE']) or v.id == AEVANN_ID) %}< a href = "/votes/{{c.fullname}}" > < li class = "list-group-item" > < i class = "fas fa-arrows-v mr-2" > < / i > Votes< / li > < / a > {% endif %}
2022-07-23 08:53:17 +00:00
2022-08-24 21:12:22 +00:00
< a class = "list-group-item" href = "{{c.permalink}}" > < i class = "fas fa-book-open mr-2" > < / i > Context< / a >
2022-07-23 08:53:17 +00:00
2022-11-11 13:52:18 +00:00
< button type = "button" class = "list-group-item copy-link" data-bs-dismiss = "modal" data-clipboard-text = "{% if SITE == 'rdrama.net' %}https://{{BAN_EVASION_DOMAIN}}{{c.shortlink}}{% else %}{{c.permalink}}{% endif %}" > < i class = "fas fa-copy mr-2" > < / i > Copy link< / button >
2022-07-23 08:53:17 +00:00
{% if v %}
2022-10-28 23:35:14 +00:00
< button type = "button" data-bs-toggle = "modal" data-bs-dismiss = "modal" data-bs-target = "#reportCommentModal" onclick = "report_commentModal('{{c.id}}','{{c.author_name}}')" class = "list-group-item" > < i class = "fas fa-flag mr-2" > < / i > Report< / button >
2022-07-23 08:53:17 +00:00
{% if FEATURES['AWARDS'] -%}
2022-11-12 18:02:02 +00:00
< button type = "button" class = "list-group-item" data-bs-toggle = "modal" data-bs-target = "#awardModal" data-url = "/award/comment/{{c.id}}" onclick = "document.getElementById('giveaward').dataset.action = this.dataset.url" > < i class = "fas fa-gift mr-2" aria-hidden = "true" > < / i > Give Award< / button >
2022-07-23 08:53:17 +00:00
{%- endif %}
2022-11-12 18:02:02 +00:00
< button type = "button" id = "save2-{{c.id}}" class = "list-group-item {% if c.id in v.saved_comment_idlist %}d-none{% endif %}" data-bs-dismiss = "modal" onclick = "postToastSwitch(this,'/save_comment/{{c.id}}','save2-{{c.id}}','unsave2-{{c.id}}','d-none')" > < i class = "fas fa-save mr-2" > < / i > Save< / button >
2022-07-23 08:53:17 +00:00
2022-11-05 02:11:19 +00:00
< button type = "button" id = "unsave2-{{c.id}}" class = "list-group-item {% if c.id not in v.saved_comment_idlist %}d-none{% endif %}" onclick = "postToastSwitch(this,'/unsave_comment/{{c.id}}','save2-{{c.id}}','unsave2-{{c.id}}','d-none')" data-bs-dismiss = "modal" > < i class = "fas fa-save mr-2" > < / i > Unsave< / button >
2022-07-23 08:53:17 +00:00
{% if c.author_id == v.id %}
2022-10-28 23:35:14 +00:00
< button type = "button" data-bs-dismiss = "modal" onclick = "toggleEdit('{{c.id}}')" class = "list-group-item" > < i class = "fas fa-edit mr-2" > < / i > Edit< / button >
2022-07-23 08:53:17 +00:00
2022-11-05 02:11:19 +00:00
< button type = "button" id = "undelete2-{{c.id}}" class = "{% if not c.deleted_utc %}d-none{% endif %} list-group-item text-success" onclick = "postToastSwitch(this,'/undelete/comment/{{c.id}}', 'delete2-{{c.id}}', 'undelete2-{{c.id}}','d-none');document.getElementById('comment-{{c.id}}').classList.remove('deleted')" data-bs-dismiss = "modal" > < i class = "far fa-trash-alt text-success mr-2" > < / i > Undelete< / button >
2022-07-23 08:53:17 +00:00
2022-11-18 21:27:53 +00:00
< button type = "button" id = "delete2-{{c.id}}" class = "{% if c.deleted_utc %}d-none{% endif %} list-group-item text-danger" data-bs-toggle = "modal" data-bs-dismiss = "modal" data-bs-target = "#deleteCommentModal" onclick = "delete_commentModal(this, '{{c.id}}')" > < i class = "far fa-trash-alt text-danger mr-2" > < / i > Delete< / button >
2022-07-23 08:53:17 +00:00
{% else %}
{% if c.body %}
2022-10-28 23:35:14 +00:00
< button type = "button" data-bs-dismiss = "modal" onclick = "expandMarkdown('{{c.id}}','c')" class = "list-group-item" > < i class = "fas text-expand-icon-{{c.id}} fa-expand-alt mr-2" > < / i > < span class = "expand-text-c-{{c.id}}" > View source< / span > < / button >
2022-07-23 08:53:17 +00:00
{% endif %}
{% if not c.ghost %}
2022-11-05 02:11:19 +00:00
< button type = "button" id = "unblock2-{{c.id}}" data-bs-dismiss = "modal" class = "text-success list-group-item {% if not c.is_blocking %}d-none{% endif %}" onclick = "postToastSwitch(this,'/settings/unblock?username={{c.author.username}}','block2-{{c.id}}','unblock2-{{c.id}}','d-none')" > < i class = "fas fa-eye-slash text-success mr-2" > < / i > Unblock user< / button >
2022-10-08 06:06:46 +00:00
2022-11-12 18:02:02 +00:00
< button type = "button" id = "block2-{{c.id}}" class = "{% if c.is_blocking %}d-none{% endif %} list-group-item text-danger" data-click = "postToastSwitch(this,'/settings/block?username={{c.author.username}}','block2-{{c.id}}','unblock2-{{c.id}}','d-none')" onclick = "areyousure(this)" data-dismiss = "modal" > < i class = "fas fa-eye-slash fa-fw text-danger mr-2" > < / i > Block user< / button >
2022-07-23 08:53:17 +00:00
{% endif %}
{% endif %}
2022-10-04 20:10:59 +00:00
{% if c.author_id == v.id or (c.post.sub and v.mods(c.post.sub)) %}
2022-11-05 02:11:19 +00:00
< button type = "button" id = "mark2-{{c.id}}" class = "{% if c.over_18 %}d-none{% endif %} list-group-item text-danger" onclick = "postToastSwitch(this,'/toggle_comment_nsfw/{{c.id}}','mark2-{{c.id}}','unmark2-{{c.id}}','d-none')" data-bs-dismiss = "modal" > < i class = "fas fa-eye-evil text-danger mr-2" > < / i > Mark +18< / button >
< button type = "button" id = "unmark2-{{c.id}}" class = "{% if not c.over_18 %}d-none{% endif %} list-group-item text-danger" onclick = "postToastSwitch(this,'/toggle_comment_nsfw/{{c.id}}','mark2-{{c.id}}','unmark2-{{c.id}}','d-none')" data-bs-dismiss = "modal" > < i class = "fas fa-eye-evil text-danger mr-2" > < / i > Unmark +18< / button >
2022-10-04 20:10:59 +00:00
{% endif %}
2022-10-06 00:57:08 +00:00
{% if v.admin_level < PERMS [ ' POST_COMMENT_MODERATION ' ] % }
2022-07-23 08:53:17 +00:00
{% if c.post and v.id == c.post.author_id %}
2022-11-12 18:02:02 +00:00
< button type = "button" id = "pin2-{{c.id}}" class = "list-group-item {% if c.stickied %}d-none{% endif %} text-info" data-bs-target = "#actionsModal-{{c.id}}" onclick = "postToastSwitch(this,'/pin_comment/{{c.id}}','pin2-{{c.id}}','unpin2-{{c.id}}','d-none')" data-bs-dismiss = "modal" > < i class = "fas fa-thumbtack fa-rotate--45 text-info mr-2" > < / i > Pin< / button >
< button type = "button" id = "unpin2-{{c.id}}" class = "list-group-item {% if not c.stickied %}d-none{% endif %} text-info" data-bs-target = "#actionsModal-{{c.id}}" onclick = "postToastSwitch(this,'/unpin_comment/{{c.id}}','pin2-{{c.id}}','unpin2-{{c.id}}','d-none')" data-bs-dismiss = "modal" > < i class = "fas fa-thumbtack fa-rotate--45 text-info mr-2" > < / i > Unpin< / button >
2022-07-23 08:53:17 +00:00
{% elif c.post.sub and v.mods(c.post.sub) %}
2022-11-12 18:02:02 +00:00
< button type = "button" id = "pin2-{{c.id}}" class = "list-group-item {% if c.stickied %}d-none{% endif %} text-info" data-bs-target = "#actionsModal-{{c.id}}" onclick = "postToastSwitch(this,'/mod_pin/{{c.id}}','pin2-{{c.id}}','unpin2-{{c.id}}','d-none')" data-bs-dismiss = "modal" > < i class = "fas fa-thumbtack fa-rotate--45 text-info mr-2" > < / i > Pin< / button >
< button type = "button" id = "unpin2-{{c.id}}" class = "list-group-item {% if not c.stickied %}d-none{% endif %} text-info" data-bs-target = "#actionsModal-{{c.id}}" onclick = "postToastSwitch(this,'/mod_unpin/{{c.id}}','pin2-{{c.id}}','unpin2-{{c.id}}','d-none')" data-bs-dismiss = "modal" > < i class = "fas fa-thumbtack fa-rotate--45 text-info mr-2" > < / i > Unpin< / button >
2022-07-23 08:53:17 +00:00
{% endif %}
{% endif %}
{% if c.post %}
{% set sub = c.post.sub %}
{% if sub and v.mods(sub) and not c.author.mods(sub) %}
2022-11-03 19:08:22 +00:00
< button type = "button" data-bs-dismiss = "modal" id = "exile2-{{c.id}}" class = "{% if c.author.exiled_from(sub) %}d-none{% endif %} list-group-item text-danger" onclick = "postToastSwitch(this,'/exile/comment/{{c.id}}','exile2-{{c.id}}','unexile2-{{c.id}}','d-none')" > < i class = "fas fa-campfire text-danger mr-2" > < / i > Exile user< / button >
< button type = "button" data-bs-dismiss = "modal" id = "unexile2-{{c.id}}" class = "{% if not c.author.exiled_from(sub) %}d-none{% endif %} list-group-item text-success" onclick = "postToastSwitch(this,'/h/{{sub}}/unexile/{{c.author_id}}','exile2-{{c.id}}','unexile2-{{c.id}}','d-none')" > < i class = "fas fa-campfire text-success mr-2" > < / i > Unexile user< / button >
2022-07-23 08:53:17 +00:00
{% endif %}
{% endif %}
{% endif %}
< / ul >
< / div >
< / div >
< / div >
< / div >
2022-10-06 09:33:46 +00:00
{% if v and v.admin_level >= PERMS['POST_COMMENT_MODERATION_TOOLS_VISIBLE'] %}
2022-07-23 08:53:17 +00:00
< div class = "modal fade d-md-none" id = "adminModal-{{c.id}}" tabindex = "-1" role = "dialog" aria-labelledby = "actionsModalTitle" aria-hidden = "true" >
< div class = "modal-dialog modal-dialog-centered" role = "document" >
< div class = "modal-content" >
< div class = "modal-header" >
2022-10-29 00:55:49 +00:00
< h6 class = "modal-title" > Admin options< / h6 >
2022-10-28 23:35:14 +00:00
< button type = "button" class = "close" data-bs-dismiss = "modal" aria-label = "Close" >
2022-09-08 17:24:00 +00:00
< span aria-hidden = "true" > < i class = "far fa-times" > < / i > < / span >
2022-07-23 08:53:17 +00:00
< / button >
< / div >
< div class = "modal-body" >
< ul class = "list-group comment-actions" >
{% if c.parent_submission %}
{% if v.id == c.author_id %}
2022-11-05 02:11:19 +00:00
< button type = "button" id = "distinguish2-{{c.id}}" class = "list-group-item {% if c.distinguish_level %}d-none{% endif %} text-info" onclick = "postToastSwitch(this,'/distinguish_comment/{{c.id}}','distinguish2-{{c.id}}','undistinguish2-{{c.id}}','d-none')" data-bs-dismiss = "modal" > < i class = "fas fa-id-badge text-info mr-2" > < / i > Distinguish< / button >
< button type = "button" id = "undistinguish2-{{c.id}}" class = "list-group-item {% if not c.distinguish_level %}d-none{% endif %} text-info" onclick = "postToastSwitch(this,'/distinguish_comment/{{c.id}}','distinguish2-{{c.id}}','undistinguish2-{{c.id}}','d-none')" data-bs-dismiss = "modal" > < i class = "fas fa-id-badge text-info mr-2" > < / i > Undistinguish< / button >
2022-07-23 08:53:17 +00:00
{% endif %}
2022-11-12 18:02:02 +00:00
< button type = "button" id = "pin2-{{c.id}}" class = "list-group-item {% if c.stickied %}d-none{% endif %} text-info" data-bs-target = "#adminModal-{{c.id}}" onclick = "postToastSwitch(this,'/sticky_comment/{{c.id}}','pin2-{{c.id}}','unpin2-{{c.id}}','d-none')" data-bs-dismiss = "modal" > < i class = "fas fa-thumbtack fa-rotate--45 text-info mr-2" > < / i > Pin< / button >
< button type = "button" id = "unpin2-{{c.id}}" class = "list-group-item {% if not c.stickied %}d-none{% endif %} text-info" data-bs-target = "#adminModal-{{c.id}}" onclick = "postToastSwitch(this,'/unsticky_comment/{{c.id}}','pin2-{{c.id}}','unpin2-{{c.id}}','d-none')" data-bs-dismiss = "modal" > < i class = "fas fa-thumbtack fa-rotate--45 text-info mr-2" > < / i > Unpin< / button >
2022-07-23 08:53:17 +00:00
2022-11-05 02:11:19 +00:00
< button type = "button" id = "mark2-{{c.id}}" class = "{% if c.over_18 %}d-none{% endif %} list-group-item text-danger" onclick = "postToastSwitch(this,'/toggle_comment_nsfw/{{c.id}}','mark2-{{c.id}}','unmark2-{{c.id}}','d-none')" data-bs-dismiss = "modal" > < i class = "fas fa-eye-evil text-danger mr-2" > < / i > Mark +18< / button >
< button type = "button" id = "unmark2-{{c.id}}" class = "{% if not c.over_18 %}d-none{% endif %} list-group-item text-danger" onclick = "postToastSwitch(this,'/toggle_comment_nsfw/{{c.id}}','mark2-{{c.id}}','unmark2-{{c.id}}','d-none')" data-bs-dismiss = "modal" > < i class = "fas fa-eye-evil text-danger mr-2" > < / i > Unmark +18< / button >
2022-07-23 08:53:17 +00:00
{% endif %}
2022-10-06 07:17:12 +00:00
{% if v.id != c.author_id and v.admin_level >= PERMS['USER_BAN'] %}
2022-11-05 02:12:17 +00:00
< button type = "button" id = "ban2-{{c.fullname}}" class = "{% if c.author.is_banned %}d-none{% endif %} list-group-item text-danger" data-bs-dismiss = "modal" data-bs-toggle = "modal" data-bs-target = "#banModal" onclick = "banModal('/comment/{{c.id}}', '{{c.author.id}}', '{{c.author_name}}', '{{c.fullname}}','d-none')" > < i class = "fas fa-user-slash text-danger fa-fw mr-2" > < / i > Ban user< / button >
< button type = "button" id = "unban2-{{c.fullname}}" class = "{% if not c.author.is_banned %}d-none{% endif %} list-group-item text-success" onclick = "postToastSwitch(this,'/unban_user/{{c.author_id}}','ban2-{{c.fullname}}','unban2-{{c.fullname}}','d-none')" data-bs-dismiss = "modal" > < i class = "fas fa-user-minus fa-fw text-success mr-2" > < / i > Unban user< / button >
{% endif %}
{% if v.id != c.author_id and v.admin_level >= PERMS['USER_AGENDAPOSTER'] %}
< button type = "button" id = "chud2-{{c.fullname}}" class = "{% if c.author.agendaposter %}d-none{% endif %} list-group-item text-danger" data-bs-dismiss = "modal" data-bs-toggle = "modal" data-bs-target = "#chudModal" onclick = "chudModal('/comment/{{c.id}}', '{{c.author.id}}', '{{c.author_name}}', '{{c.fullname}}','d-none')" > < i class = "fas fa-face-sleeping text-danger fa-fw mr-2" > < / i > Chud user< / button >
< button type = "button" id = "unchud2-{{c.fullname}}" class = "{% if not c.author.agendaposter %}d-none{% endif %} list-group-item text-success" onclick = "postToastSwitch(this,'/unagendaposter/{{c.author_id}}','chud2-{{c.fullname}}','unchud2-{{c.fullname}}','d-none')" data-bs-dismiss = "modal" > < i class = "fas fa-face-sleeping fa-fw text-success mr-2" > < / i > Unchud user< / button >
2022-07-23 08:53:17 +00:00
{% endif %}
2022-11-05 02:12:17 +00:00
2022-10-06 07:17:12 +00:00
{% if v.admin_level >= PERMS['POST_COMMENT_MODERATION'] %}
2022-10-23 15:58:22 +00:00
{% if v.id != c.author.id %}
2022-11-05 02:11:19 +00:00
< button type = "button" id = "remove2-{{c.id}}" class = "{% if c.is_banned %}d-none{% endif %} list-group-item text-danger" onclick = "removeComment(this,'{{c.id}}','approve2-{{c.id}}','remove2-{{c.id}}','d-none')" data-bs-dismiss = "modal" > < i class = "fas fa-ban text-danger mr-2" > < / i > Remove< / button >
2022-10-23 15:58:22 +00:00
{% endif %}
2022-11-05 02:11:19 +00:00
< button type = "button" id = "approve2-{{c.id}}" class = "{% if not c.is_banned and request.path != '/admin/reported/comments' %}d-none{% endif %} list-group-item text-success" onclick = "approveComment(this,'{{c.id}}','approve2-{{c.id}}','remove2-{{c.id}}','d-none')" data-bs-dismiss = "modal" > < i class = "fas fa-check text-success mr-2" > < / i > Approve< / button >
2022-07-23 08:53:17 +00:00
{% endif %}
2022-10-06 07:40:36 +00:00
{% if c.oauth_app and v.admin_level >= PERMS['APPS_MODERATION'] %}
2022-08-24 21:12:22 +00:00
< a href = "{{c.oauth_app.permalink}}/comments" class = "list-group-item text-info" > < i class = "fas fa-code text-info mr-2" > < / i > API App< / a >
2022-07-23 08:53:17 +00:00
{% endif %}
< / ul >
< / div >
< / div >
< / div >
< / div >
{% endif %}
< / div >
{% endif %}
{% endmacro %}
2022-11-17 21:02:08 +00:00
{% for comment in comments if user_can_see(v, comment) %}
2022-07-23 08:53:17 +00:00
{{single_comment(comment)}}
{% endfor %}
2022-08-30 05:26:13 +00:00
{% if not request.headers.get("xhr") %}
2022-07-23 08:53:17 +00:00
{% if v %}
2022-11-15 19:14:29 +00:00
{% include "modals/gif.html" %}
{% include "modals/emoji.html" %}
2022-10-06 01:58:43 +00:00
{% if v.admin_level >= PERMS['USER_BAN'] %}
2022-11-15 19:14:29 +00:00
{% include "modals/ban.html" %}
2022-07-23 08:53:17 +00:00
{% endif %}
< div class = "modal fade" id = "deleteCommentModal" tabindex = "-1" role = "dialog" aria-labelledby = "deleteCommentModalTitle" aria-hidden = "true" >
< div class = "modal-dialog modal-dialog-centered" role = "document" >
< div class = "modal-content" >
< div class = "modal-header d-none d-md-flex" >
< h5 class = "modal-title" > Delete comment?< / h5 >
2022-10-28 23:35:14 +00:00
< button type = "button" class = "close" data-bs-dismiss = "modal" aria-label = "Close" >
2022-09-08 17:24:00 +00:00
< span aria-hidden = "true" > < i class = "far fa-times" > < / i > < / span >
2022-07-23 08:53:17 +00:00
< / button >
< / div >
< div class = "modal-body text-center" >
< div class = "py-4" >
2022-10-23 17:57:38 +00:00
< i class = "fas fa-trash-alt text-muted d-mob-none" style = "font-size: 3.5rem;" > < / i >
2022-07-23 08:53:17 +00:00
< / div >
2022-10-29 00:55:49 +00:00
< h4 class = "d-md-none" > Delete comment?< / h4 >
2022-07-23 08:53:17 +00:00
2022-10-23 17:57:38 +00:00
< p class = "d-mob-none" > Your comment will be deleted everywhere on {{SITE_NAME}}.< / p >
2022-07-23 08:53:17 +00:00
< p class = "text-muted d-md-none" > Your comment will be deleted everywhere on {{SITE_NAME}}.< / p >
2022-10-28 23:35:14 +00:00
< button type = "button" id = "deleteCommentButton" class = "btn btn-danger btn-block mt-5" data-bs-dismiss = "modal" > Delete comment< / button >
2022-07-23 08:53:17 +00:00
2022-10-28 23:35:14 +00:00
< button type = "button" class = "btn btn-secondary btn-block" data-bs-dismiss = "modal" > Cancel< / button >
2022-07-23 08:53:17 +00:00
< / div >
< / div >
< / div >
< / div >
< div class = "modal fade" id = "reportCommentModal" tabindex = "-1" role = "dialog" aria-labelledby = "reportCommentModalTitle" aria-hidden = "true" >
< div class = "modal-dialog modal-dialog-centered" role = "document" >
< div class = "modal-content" >
< div class = "modal-header" >
< h5 class = "modal-title" > Report < span id = "comment-author" > < / span > 's comment< / h5 >
2022-10-28 23:35:14 +00:00
< button type = "button" class = "close" data-bs-dismiss = "modal" aria-label = "Close" >
2022-09-08 17:24:00 +00:00
< span aria-hidden = "true" > < i class = "far fa-times" > < / i > < / span >
2022-07-23 08:53:17 +00:00
< / button >
< / div >
2022-09-12 09:48:01 +00:00
< div class = "modal-body" >
2022-10-29 00:55:49 +00:00
< h6 > We're sorry something here is wrong.< / h6 >
2022-10-29 00:38:39 +00:00
< small class = "form-text text-muted mb-1" > Please enter a reason for reporting below.< / small >
2022-09-12 09:48:01 +00:00
< input autocomplete = "off" maxlength = "100" id = "reason_comment" class = "form-control" >
< / div >
< div class = "modal-footer" >
2022-10-28 23:35:14 +00:00
< button type = "button" class = "btn btn-link text-muted" data-bs-dismiss = "modal" > Cancel< / button >
< button type = "button" id = "reportCommentButton" class = "btn btn-danger" data-bs-dismiss = "modal" > Report comment< / button >
2022-07-23 08:53:17 +00:00
< / div >
< / div >
< / div >
< / div >
{% endif %}
{% if v %}
2022-11-18 19:16:40 +00:00
< script defer src = "{{'js/vendor/marked.js' | asset}}" > < / script >
< script defer src = "{{'js/markdown.js' | asset}}" > < / script >
2022-09-24 07:04:06 +00:00
< script defer src = "{{'js/comments_v.js' | asset}}" > < / script >
2022-07-23 08:53:17 +00:00
{% endif %}
2022-11-18 19:16:40 +00:00
< script defer src = "{{'js/vendor/clipboard.js' | asset}}" > < / script >
2022-07-23 08:53:17 +00:00
2022-10-06 09:33:46 +00:00
{% if v and v.admin_level >= PERMS['POST_COMMENT_MODERATION_TOOLS_VISIBLE'] %}
2022-09-24 07:04:06 +00:00
< script defer src = "{{'js/comments_admin.js' | asset}}" > < / script >
2022-07-23 08:53:17 +00:00
{% endif %}
2022-09-24 07:04:06 +00:00
< script defer src = "{{'js/comments+submission_listing.js' | asset}}" > < / script >
< script defer src = "{{'js/comments.js' | asset}}" > < / script >
2022-07-23 08:53:17 +00:00
< script >
{% if p and (not v or v.highlightcomments) %}
comments = JSON.parse(localStorage.getItem("comment-counts")) || {}
lastCount = comments['{{p.id}}']
if (lastCount)
{
{% for c in p.comments %}
{% if not (v and v.id==c.author_id) and not c.voted %}
if ({{c.created_utc*1000}} > lastCount.t)
try {document.getElementById("comment-{{c.id}}-only").classList.add('unread')}
catch(e) {}
{% endif %}
{% endfor %}
}
{% endif %}
function morecomments(cid) {
btn = document.getElementById(`btn-${cid}`);
btn.disabled = true;
btn.innerHTML = "Requesting...";
2022-07-23 08:57:53 +00:00
const form = new FormData();
2022-07-23 08:53:17 +00:00
form.append("formkey", formkey());
2022-10-12 06:24:30 +00:00
form.append("sort", "{{sort}}");
2022-07-23 08:53:17 +00:00
const xhr = new XMLHttpRequest();
xhr.open("get", `/morecomments/${cid}`);
xhr.setRequestHeader('xhr', 'xhr');
xhr.onload=function(){
if (xhr.status==200) {
2022-09-05 22:52:22 +00:00
let e = document.getElementById(`replies-of-c_${cid}`)
2022-07-23 08:53:17 +00:00
e.innerHTML = xhr.response.replace(/data-src/g, 'src').replace(/data-cfsrc/g, 'src').replace(/style="display:none;visibility:hidden;"/g, '');
bs_trigger(e)
{% if p %}
comments = JSON.parse(localStorage.getItem("old-comment-counts")) || {}
lastCount = comments['{{p.id}}']
if (lastCount)
{
{% for c in p.comments %}
{% if not (v and v.id==c.author_id) and not c.voted %}
if ({{c.created_utc*1000}} > lastCount.t)
try {document.getElementById("comment-{{c.id}}-only").classList.add('unread')}
catch(e) {}
{% endif %}
{% endfor %}
}
{% endif %}
}
btn.disabled = false;
}
xhr.send(form)
}
< / script >
{% endif %}
{% if offset %}
{% if p %}
{% set pid = p.id %}
{% endif %}
< br >
2022-10-28 23:35:14 +00:00
< div id = "viewmore-{{offset}}" > < button type = "button" id = "viewbtn" class = "btn btn-primary" onclick = "viewmore({{pid}},'{{sort}}',{{offset}},{{ids}})" > VIEW MORE COMMENTS< / a > < / div >
2022-07-23 08:53:17 +00:00
{% endif %}
2022-09-03 19:19:18 +00:00
{% if SITE_NAME == 'rDrama' and not request.headers.get("xhr") and v and 'SamsungBrowser' not in g.agent %}
2022-09-02 17:27:51 +00:00
< div id = "detection" style = "display:none;background-color:canvas;color-scheme:light" > < / div >
2022-08-24 23:19:25 +00:00
< script >
2022-09-02 17:27:51 +00:00
const detectionDiv = document.querySelector('#detection');
const isAutoDark = getComputedStyle(detectionDiv).backgroundColor != 'rgb(255, 255, 255)';
if (!isAutoDark) {
2022-09-20 18:58:20 +00:00
const element = document.getElementsByClassName('comment-section')[0]
2022-09-20 18:54:52 +00:00
if (element) {
let color = getComputedStyle(element).getPropertyValue('background-color');
color = 'rgba' + color.slice(3,-1) + ', 0.1)'
const markTemplate = (name) => {
return `< svg xmlns = 'http://www.w3.org/2000/svg' version = '1.1' width = '50px' height = '50px' > < text transform = 'translate(10, 50) rotate(-45)' fill = '${color}' font-size = '20' > ${name}< / text > < / svg > `;
};
const base64Mark = btoa(markTemplate("{{v.id}}"));
var style = document.createElement('style');
2022-11-11 14:06:28 +00:00
style.innerHTML = `.actual-post:not(.deleted, .banned),.comment-section>.comment{background-image:url("data:image/svg+xml;base64,${base64Mark}")}`;
2022-09-20 18:54:52 +00:00
document.getElementsByTagName('head')[0].appendChild(style);
}
2022-09-02 17:27:51 +00:00
}
2022-08-24 23:19:25 +00:00
< / script >
2022-08-24 23:18:37 +00:00
{% endif %}
2022-09-24 00:37:32 +00:00
< / body >