2021-07-21 01:12:26 +00:00
{% extends "default.html" %}
2021-09-21 20:12:34 +00:00
< script src = "https://cdn.jsdelivr.net/npm/clipboard@2/dist/clipboard.min.js" > < / script >
2021-09-25 21:13:52 +00:00
{% if v and v.id == p.author_id %}
< script >
// Post edit form
togglePostEdit=function(id){
body=document.getElementById("post-body");
title=document.getElementById("post-title");
form=document.getElementById("edit-post-body-"+id);
box=document.getElementById("post-edit-box-"+id);
box2=document.getElementById("post-edit-box2-"+id);
body.classList.toggle("d-none");
title.classList.toggle("d-none");
form.classList.toggle("d-none");
autoExpand(box);
autoExpand(box2);
};
< / script >
{% endif %}
2021-07-21 01:12:26 +00:00
< script >
2021-09-21 20:12:34 +00:00
var clipboard = new ClipboardJS('.copy-link');
clipboard.on('success', function(e) {
jQuery(function($) {
$('#toast-success').toast('show');
})
console.log(e);
});
clipboard.on('error', function(e) {
jQuery(function($) {
$('#toast-error').toast('show');
})
console.log(e);
});
2021-07-21 01:12:26 +00:00
var date = new Date('{{p.created_datetime}}');
document.getElementById('timestamp').title = date.toString();
{% if p.edited_utc %}
var date = new Date('{{p.edited_datetime}}');
document.getElementById('edited_timestamp').title = date.toString();
{% endif %}
< / script >
2021-08-13 18:53:11 +00:00
{% set title=p.realtitle(v) %}
2021-09-18 19:45:17 +00:00
{% set ups=p.upvotes %}
{% set downs=p.downvotes %}
2021-07-21 01:12:26 +00:00
{% set score=ups-downs %}
{% if v %}
2021-08-07 23:03:15 +00:00
{% set voted=p.voted if p.voted else 0 %}
2021-07-21 01:12:26 +00:00
{% else %}
{% set voted=-2 %}
{% endif %}
{% block title %}
< meta charset = "utf-8" / >
< meta property = "og:type" content = "article" / >
{% if comment_info and not comment_info.is_banned and not linked_comment.deleted_utc > 0 %}
2021-08-19 05:14:52 +00:00
< title > {{'@'+comment_info.author.username}} comments on "{{p.title}} - {{'SITE_NAME' | app_config}}"< / title >
2021-08-13 22:05:13 +00:00
2021-07-21 01:12:26 +00:00
2021-07-25 22:11:26 +00:00
< meta property = "og:article:author" content = "{{'@'+comment_info.author.username}}" / >
2021-07-21 01:12:26 +00:00
< meta property = "article:published_time" content = "{{comment_info.created_datetime}}" / >
{% if comment_info.edited_utc %}< meta property = "article:modified_time" content = "{{comment_info.edited_string}}" / > {% endif %}
< meta property = "og:description" name = "description" content = "{{comment_info.body}}" / >
2021-07-25 22:11:26 +00:00
< meta property = "og:author" name = "author" content = "{{'@'+comment_info.author.username}}" / >
2021-08-19 05:14:52 +00:00
< meta property = "og:title" content = "{{'@'+comment_info.author.username}} comments on {{p.title}} - {{'SITE_NAME' | app_config}}" / >
2021-09-13 15:58:52 +00:00
< meta property = "og:image" content = "{% if p.is_image %}{{p.realurl(v)}}{% elif p.has_thumb%}{{p.thumb_url}}{% else %}{{'SITE_NAME' | app_config}}/assets/images/{{'SITE_NAME' | app_config}}/preview.webp{% endif %}" / >
2021-09-05 19:23:53 +00:00
{% if p.is_video %}
< meta property = "og:video" content = "{{ p.realurl(v) }}" / >
{% endif %}
2021-07-21 01:12:26 +00:00
< meta property = "og:url" content = "{{comment_info.permalink | full_link}}" / >
2021-08-02 16:13:41 +00:00
< meta property = "og:site_name" content = "{{request.host}}" / >
2021-07-21 01:12:26 +00:00
< meta name = "twitter:card" content = "summary" / >
2021-08-04 16:21:10 +00:00
< meta name = "twitter:site" content = "{{request.host_url}}" >
2021-08-19 05:14:52 +00:00
< meta name = "twitter:title" content = "{{'@'+comment_info.author.username}} comments on {{p.title}} - {{'SITE_NAME' | app_config}}" / >
2021-07-25 22:11:26 +00:00
< meta name = "twitter:creator" content = "{{'@'+comment_info.author.username}}" >
2021-07-21 01:12:26 +00:00
< meta name = "twitter:description" content = "{{comment_info.body}}" / >
2021-09-13 15:58:52 +00:00
< meta name = "twitter:image" content = "{% if p.is_image %}{{p.realurl(v)}}{% elif p.has_thumb%}{{p.thumb_url}}{% else %}{{'SITE_NAME' | app_config}}/assets/images/{{'SITE_NAME' | app_config}}/preview.webp{% endif %}" / >
2021-07-21 01:12:26 +00:00
< meta name = "twitter:url" content = "{{p.permalink | full_link}}" / >
{% if linked_comment.author.is_private %}
< meta name = "robots" content = "noindex" >
{% endif %}
{% else %}
2021-08-19 19:41:59 +00:00
< title > {{p.title}} - {{'SITE_NAME' | app_config}}< / title >
2021-08-13 22:05:13 +00:00
2021-07-25 22:11:26 +00:00
< meta property = "og:article:author" content = "{{'@'+p.author.username}}" / >
2021-09-18 19:52:31 +00:00
< meta property = "article:published_time" content = "{{p.created_datetime}}" / >
2021-07-21 01:12:26 +00:00
{% if p.edited_utc %}< meta property = "article:modified_time" content = "{{p.edited_string}}" / > {% endif %}
2021-08-13 18:53:11 +00:00
< meta property = "og:description" name = "description" content = "{{p.realbody(V)}}" / >
2021-07-25 22:11:26 +00:00
< meta property = "og:author" name = "author" content = "{{'@'+p.author.username}}" / >
2021-08-19 05:14:52 +00:00
< meta property = "og:title" content = "{{p.title}} - {{'SITE_NAME' | app_config}}" / >
2021-09-13 15:58:52 +00:00
< meta property = "og:image" content = "{% if p.is_image %}{{p.realurl(v)}}{% elif p.has_thumb%}{{p.thumb_url}}{% else %}{{'SITE_NAME' | app_config}}/assets/images/{{'SITE_NAME' | app_config}}/preview.webp{% endif %}" / >
2021-09-05 19:26:33 +00:00
{% if p.is_video %}
< meta property = "og:video" content = "{{ p.realurl(v) }}" / >
{% endif %}
2021-07-21 01:12:26 +00:00
< meta property = "og:url" content = "{{p.permalink | full_link}}" / >
2021-08-02 16:13:41 +00:00
< meta property = "og:site_name" content = "{{request.host}}" / >
2021-07-21 01:12:26 +00:00
< meta name = "twitter:card" content = "summary_large_image" / >
2021-08-04 16:21:10 +00:00
< meta name = "twitter:site" content = "{{request.host_url}}" >
2021-08-19 05:14:52 +00:00
< meta name = "twitter:title" content = "{{p.title}} - {{'SITE_NAME' | app_config}}" / >
2021-07-25 22:11:26 +00:00
< meta name = "twitter:creator" content = "{{'@'+p.author.username}}" >
2021-08-13 18:53:11 +00:00
< meta name = "twitter:description" content = "{{p.realbody(v)}}" / >
2021-09-13 15:58:52 +00:00
< meta name = "twitter:image" content = "{% if p.is_image %}{{p.realurl(v)}}{% elif p.has_thumb %}{{p.thumb_url}}{% else %}{{'SITE_NAME' | app_config}}/assets/images/{{'SITE_NAME' | app_config}}/preview.webp{% endif %}" / >
2021-07-21 01:12:26 +00:00
< meta name = "twitter:url" content = "{{p.permalink | full_link}}" / >
{% if p.author.is_private %}
< meta name = "robots" content = "noindex" >
{% endif %}
{% endif %}
{% endblock %}
{% block pagetype %}thread{% endblock %}
{% block actionsModal %}
<!-- Post Actions Modal -->
< div class = "modal fade modal-sm-bottom d-md-none" id = "actionsModal" 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 p-3" >
< h5 class = "col modal-title text-center h6" > More options< / h5 >
< button type = "button" class = "close position-absolute py-3" style = "right: 1rem;" data-dismiss = "modal" aria-label = "Close" >
< span aria-hidden = "true" > < i class = "fas fa-times-circle text-gray-500" > < / i > < / span >
< / button >
< / div >
< div class = "modal-body" >
< ul class = "list-group post-actions" >
2021-08-19 18:36:46 +00:00
< button class = "nobackground btn btn-link btn-block btn-lg text-left text-muted" data-toggle = "modal" data-dismiss = "modal" data-target = "#reportPostModal" onclick = "report_postModal('{{p.id}}','{{'@'+p.author.username}}')" class = "d-block" > < i class = "far fa-flag text-center text-muted mr-3" > < / i > Report< / button >
2021-07-21 01:12:26 +00:00
{% if v and v.id==p.author_id %}
{% if p.private %}
2021-09-20 13:11:10 +00:00
< button class = "nobackground btn btn-link btn-block btn-lg text-left text-muted" href = "javascript:void(0)" onclick = "post_toast('/publish/{{p.id}}')" data-dismiss = "modal" > < i class = "fas fa-globe text-center text-muted mr-3" > < / i > Publish< / button >
2021-07-21 01:12:26 +00:00
{% endif %}
2021-08-19 18:36:46 +00:00
< button class = "nobackground btn btn-link btn-block btn-lg text-left text-muted" data-dismiss = "modal" onclick = "togglePostEdit('{{p.id}}')" > < i class = "far fa-edit text-center text-muted mr-3" > < / i > Edit< / button >
2021-07-21 01:12:26 +00:00
2021-09-23 15:40:21 +00:00
< button id = "pin-profile2-{{p.id}}" class = "{% if p.is_pinned %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-muted text-left" href = "javascript:void(0)" onclick = "post_toast2('/pin/{{p.id}}','pin-profile2-{{p.id}}','unpin-profile2-{{p.id}}')" data-dismiss = "modal" > < i class = "fas fa-thumbtack text-center mr-3" > < / i > Pin to profile< / button >
2021-09-08 19:42:38 +00:00
< button id = "unpin-profile2-{{p.id}}" class = "{% if not p.is_pinned %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-muted text-left" href = "javascript:void(0)" onclick = "post_toast2('/pin/{{p.id}}','pin-profile2-{{p.id}}','unpin-profile2-{{p.id}}')" data-dismiss = "modal" > < i class = "fas fa-thumbtack text-center mr-3" > < / i > Unpin from profile< / button >
2021-07-21 01:12:26 +00:00
2021-09-15 03:03:54 +00:00
{% if p.deleted_utc > 0 %}
< button class = "nobackground btn btn-link btn-block btn-lg text-left text-muted" href = "javascript:void(0)" onclick = "post_toast('/undelete_post/{{p.id}}')" data-dismiss = "modal" > < i class = "far fa-trash-alt text-center text-muted mr-3" > < / i > Undelete< / button >
{% else %}
< button class = "nobackground btn btn-link btn-block btn-lg text-left text-muted" data-toggle = "modal" data-dismiss = "modal" data-target = "#deletePostModal" onclick = "delete_postModal('{{p.id}}')" > < i class = "far fa-trash-alt text-center text-muted mr-3" > < / i > Delete< / button >
{% endif %}
2021-07-21 01:12:26 +00:00
{% endif %}
2021-09-23 16:37:51 +00:00
< a href = "/votes?link={{p.fullname}}" > < button class = "nobackground btn btn-link btn-block btn-lg text-left text-muted" > < i class = "fas fa-arrows-v text-center text-muted mr-3" > < / i > Votes< / button > < / a >
2021-07-21 01:12:26 +00:00
2021-07-27 11:07:27 +00:00
{% if v and v.id!=p.author_id %}
2021-09-08 20:02:36 +00:00
< button class = "nobackground btn btn-link btn-block btn-lg text-left text-muted" data-toggle = "modal" data-dismiss = "modal" data-target = "#awardModal" onclick = "awardModal('/post/{{p.id}}/awards')" > < i class = "fas fa-gift text-center text-muted mr-3" > < / i > Give Award< / button >
2021-07-22 19:02:39 +00:00
{% endif %}
2021-07-22 18:52:13 +00:00
2021-09-08 19:42:38 +00:00
{% if v %}
2021-09-20 13:11:10 +00:00
< button id = "subscribe2-{{p.id}}" class = "{% if p.id in v.subscribed_idlist() %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-left text-muted" href = "javascript:void(0)" onclick = "post_toast2('/subscribe/{{p.id}}','subscribe2-{{p.id}}','unsubscribe2-{{p.id}}')" data-dismiss = "modal" > < i class = "fas fa-eye text-center text-muted mr-3" > < / i > Subscribe< / button >
2021-09-08 19:42:38 +00:00
2021-09-20 13:11:10 +00:00
< button id = "unsubscribe2-{{p.id}}" class = "{% if not p.id in v.subscribed_idlist() %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-left text-muted" href = "javascript:void(0)" onclick = "post_toast2('/unsubscribe/{{p.id}}','subscribe2-{{p.id}}','unsubscribe2-{{p.id}}')" data-dismiss = "modal" > < i class = "fas fa-eye-slash text-center text-muted mr-3" > < / i > Unsubscribe< / button >
2021-07-21 01:12:26 +00:00
{% endif %}
{% if v %}
2021-09-20 13:11:10 +00:00
< button id = "save2-{{p.id}}" class = "{% if p.id in v.saved_idlist() %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-left text-muted" href = "javascript:void(0)" onclick = "post_toast2('/save_post/{{p.id}}','save2-{{p.id}}','unsave2-{{p.id}}')" data-dismiss = "modal" > < i class = "fas fa-save text-center text-muted mr-3" > < / i > Save< / button >
< button id = "unsave2-{{p.id}}" class = "{% if not p.id in v.saved_idlist() %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-left text-muted" href = "javascript:void(0)" onclick = "post_toast2('/unsave_post/{{p.id}}','save2-{{p.id}}','unsave2-{{p.id}}')" data-dismiss = "modal" > < i class = "fas fa-save text-center text-muted mr-3" > < / i > Unsave< / button >
2021-09-11 23:40:58 +00:00
2021-09-13 21:04:28 +00:00
{% if v.admin_level >=3 or v.id == p.author.id and v.paid_dues %}
2021-09-12 06:24:05 +00:00
< button id = "club2-{{p.id}}" class = "{% if p.club %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-info text-left" href = "javascript:void(0)" onclick = "post_toast2('/toggle_club/{{p.id}}','club2-{{p.id}}','unclub2-{{p.id}}')" data-dismiss = "modal" > < i class = "fas fa-eye-slash mr-3" > < / i > Mark club< / button >
< button id = "unclub2-{{p.id}}" class = "{% if not p.club %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-info text-left" href = "javascript:void(0)" onclick = "post_toast2('/toggle_club/{{p.id}}','club2-{{p.id}}','unclub2-{{p.id}}')" data-dismiss = "modal" > < i class = "fas fa-eye mr-3" > < / i > Unmark club< / button >
2021-09-11 23:40:58 +00:00
{% endif %}
2021-07-21 01:12:26 +00:00
{% if v.admin_level >=3 %}
2021-09-10 02:18:13 +00:00
< button id = "pin2-{{p.id}}" class = "{% if p.stickied %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-left" href = "javascript:void(0)" onclick = "post_toast2('/sticky/{{p.id}}','pin2-{{p.id}}','unpin2-{{p.id}}')" data-dismiss = "modal" > < i class = "fas fa-thumbtack text-center mr-3" > < / i > Pin< / button >
< button id = "unpin2-{{p.id}}" class = "{% if not p.stickied %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-left" href = "javascript:void(0)" onclick = "post_toast2('/sticky/{{p.id}}','pin2-{{p.id}}','unpin2-{{p.id}}')" data-dismiss = "modal" > < i class = "fas fa-thumbtack text-center mr-3" > < / i > Unpin< / button >
2021-07-21 01:12:26 +00:00
{% if v==p.author %}
2021-09-08 19:42:38 +00:00
< button id = "distinguish2-{{p.id}}" class = "{% if p.distinguish_level %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-left" href = "javascript:void(0)" onclick = "post_toast2('/distinguish/{{p.id}}','distinguish2-{{p.id}}','undistinguish2-{{p.id}}')" data-dismiss = "modal" > < i class = "fas fa-crown text-center mr-3" > < / i > Distinguish< / button >
< button id = "undistinguish2-{{p.id}}" class = "{% if not p.distinguish_level %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-left" href = "javascript:void(0)" onclick = "post_toast2('/distinguish/{{p.id}}','distinguish2-{{p.id}}','undistinguish2-{{p.id}}')" data-dismiss = "modal" > < i class = "fas fa-crown text-center mr-3" > < / i > Undistinguish< / button >
2021-07-21 01:12:26 +00:00
{% endif %}
2021-09-12 06:41:19 +00:00
{% if "/reported/" in request.path %}
2021-09-08 19:42:38 +00:00
< button class = "nobackground btn btn-link btn-block btn-lg text-danger text-left" href = "javascript:void(0)" onclick = "post_toast('/ban_post/{{p.id}}')" data-dismiss = "modal" > < i class = "far fa-ban text-center mr-3" > < / i > Remove< / button >
< button class = "nobackground btn btn-link btn-block btn-lg text-success text-left" href = "javascript:void(0)" onclick = "post_toast('/unban_post/{{p.id}}')" data-dismiss = "modal" > < i class = "far fa-check text-center mr-3" > < / i > Approve< / button >
{% else %}
< button id = "remove2-{{p.id}}" class = "{% if p.is_banned %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-danger text-left" href = "javascript:void(0)" onclick = "post_toast2('/ban_post/{{p.id}}','remove2-{{p.id}}','approve2-{{p.id}}')" data-dismiss = "modal" > < i class = "far fa-ban text-center mr-3" > < / i > Remove< / button >
< button id = "approve2-{{p.id}}" class = "{% if not p.is_banned %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-success text-left" href = "javascript:void(0)" onclick = "post_toast2('/unban_post/{{p.id}}','remove2-{{p.id}}','approve2-{{p.id}}')" data-dismiss = "modal" > < i class = "far fa-check text-center mr-3" > < / i > Approve< / button >
{% endif %}
2021-07-21 01:12:26 +00:00
{% endif %}
{% if v.admin_level >=4 and p.oauth_app %}
2021-09-23 15:40:21 +00:00
< a href = "{{p.oauth_app.permalink}}" > < button class = "nobackground btn btn-link btn-block btn-lg text-muted text-left" > < i class = "far fa-code text-center text-info mr-3" > < / i > API App< / button > < / a >
2021-07-21 01:12:26 +00:00
{% endif %}
{% endif %}
2021-07-28 03:36:50 +00:00
{% if v and v.id != p.author_id and v.admin_level == 0 %}
2021-09-08 19:42:38 +00:00
< button id = "block2-{{p.id}}" class = "nobackground btn btn-link btn-block btn-lg text-muted text-left{% if p.is_blocking %} d-none{% endif %}" data-dismiss = "modal" onclick = "post_toast2('/settings/block?username={{p.author.username}}','block2-{{p.id}}','unblock2-{{p.id}}')" > < i class = "fas fa-eye-slash mr-3" > < / i > Block user< / button >
< button id = "unblock2-{{p.id}}" class = "nobackground btn btn-link btn-block btn-lg text-muted text-left{% if not p.is_blocking %} d-none{% endif %}" data-dismiss = "modal" onclick = "post_toast2('/settings/unblock?username={{p.author.username}}','block2-{{p.id}}','unblock2-{{p.id}}')" > < i class = "fas fa-eye mr-3" > < / i > Unblock user< / button >
2021-07-21 01:12:26 +00:00
{% endif %}
2021-07-31 11:18:34 +00:00
{% if v and (v.id==p.author_id or v.admin_level>=3) %}
2021-09-20 21:06:45 +00:00
< button id = "mark2-{{p.id}}" class = "{% if p.over_18 %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-left text-danger" onclick = "post_toast2('/toggle_post_nsfw/{{p.id}}','mark2-{{p.id}}','unmark2-{{p.id}}')" data-dismiss = "modal" > < i class = "far fa-eye-evil text-center text-danger mr-3" > < / i > Mark +18< / button >
2021-09-08 20:02:36 +00:00
< button id = "unmark2-{{p.id}}" class = "{% if not p.over_18 %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-left text-danger" onclick = "post_toast2('/toggle_post_nsfw/{{p.id}}','mark2-{{p.id}}','unmark2-{{p.id}}')" data-dismiss = "modal" > < i class = "far fa-eye-evil text-center text-danger mr-3" > < / i > Unmark +18< / button >
2021-07-21 01:12:26 +00:00
{% endif %}
2021-07-31 11:18:34 +00:00
2021-09-08 19:42:38 +00:00
{% if not v.id==p.author_id and v.admin_level == 1 %}
2021-09-23 15:40:21 +00:00
< button id = "sex-user-{{p.id}}" class = "list-inline-item{% if p.is_blocking %} d-none{% endif %} text-danger" href = "javascript:void(0)" onclick = "post_toast2('/settings/block?username={{p.author.username}}','sex-user-{{p.id}}','unsex-user-{{p.id}}')" data-dismiss = "modal" > < i class = "fas fa-user-slash text-danger" > < / i > Ban user< / button >
< button id = "unsex-user-{{p.id}}" class = "list-inline-item{% if not p.is_blocking %} d-none{% endif %} text-success" href = "javascript:void(0)" onclick = "post_toast2('/settings/unblock?username={{p.author.username}}','sex-user-{{p.id}}','unsex-user-{{p.id}}')" data-dismiss = "modal" > < i class = "fas fa-user-slash text-success" > < / i > Unban user< / button >
2021-07-21 01:12:26 +00:00
{% endif %}
2021-09-08 19:42:38 +00:00
{% if v and v.admin_level == 6 and v.id!=p.author_id %}
2021-09-20 13:11:10 +00:00
< button id = "ban2-{{p.id}}" data-dismiss = "modal" data-toggle = "modal" data-target = "#banModal" onclick = "banModal('/post/{{p.id}}', '{{ p.author.id }}', '{{p.author.username}}')" class = "{% if p.author.is_suspended %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-danger text-left" href = "javascript:void(0)" > < i class = "fas fa-user-minus mr-3" > < / i > Ban user< / button >
< button id = "unban2-{{p.id}}" class = "{% if not p.author.is_suspended %}d-none{% endif %} nobackground btn btn-link btn-block btn-lg text-success text-left" href = "javascript:void(0)" onclick = "post_toast2('/unban_user/{{p.author_id}}','ban2-{{p.id}}','unban2-{{p.id}}')" data-dismiss = "modal" > < i class = "fas fa-user-minus mr-3" > < / i > Unban user< / button >
2021-09-08 19:42:38 +00:00
{% endif %}
2021-07-21 01:12:26 +00:00
< / ul >
< / div >
< / div >
< / div >
< / div >
{% endblock %}
{% block content %}
2021-07-27 23:16:33 +00:00
2021-08-11 20:20:37 +00:00
{% if p.award_count("shit") %}
2021-09-25 17:43:45 +00:00
< script src = "/assets/js/bug-min.js" > < / script >
2021-09-24 16:38:45 +00:00
{% set minbugs = 10*p.award_count("shit") if p.award_count("shit") < 3 else 20 % }
{% set maxbugs = 20*p.award_count("shit") if p.award_count("shit") < 3 else 40 % }
2021-09-25 17:43:45 +00:00
< script >
2021-09-18 16:29:01 +00:00
new BugController({
imageSprite: "/assets/images/fly-sprite.webp",
canDie: false,
minBugs: {{minbugs}},
2021-09-24 16:38:45 +00:00
maxBugs: {{maxbugs}},
2021-09-18 16:29:01 +00:00
mouseOver: "multiply"
});
< / script >
2021-07-27 23:16:33 +00:00
{% endif %}
2021-08-23 11:05:56 +00:00
2021-09-20 13:11:10 +00:00
{% if p.award_count("fireflies") %}
2021-09-25 17:43:45 +00:00
< script src = "/assets/js/fireflies.js" > < / script >
2021-09-24 16:38:45 +00:00
{% set minbugs = 10*p.award_count("fireflies") if p.award_count("fireflies") < 3 else 20 % }
{% set maxbugs = 20*p.award_count("fireflies") if p.award_count("fireflies") < 3 else 40 % }
2021-09-25 17:43:45 +00:00
< script >
2021-09-18 18:57:26 +00:00
new BugController({
2021-09-20 13:11:10 +00:00
imageSprite: "/assets/images/fireflies.webp",
2021-09-18 18:57:26 +00:00
canDie: false,
minBugs: {{minbugs}},
2021-09-24 16:38:45 +00:00
maxBugs: {{maxbugs}},
2021-09-18 18:57:26 +00:00
mouseOver: "multiply"
});
< / script >
2021-08-23 10:59:18 +00:00
{% endif %}
2021-08-22 20:18:31 +00:00
2021-07-21 01:12:26 +00:00
< div class = "row mb-3" >
2021-08-22 20:36:42 +00:00
< div id = "post-root" class = "col-12" >
2021-07-21 01:12:26 +00:00
2021-08-23 22:00:22 +00:00
< div id = "post-{{p.id}}" class = "card border-0 mt-3{% if p.is_banned %} banned{% endif %}{% if p.stickied %} stickied{% endif %}{% if voted==1 %} upvoted{% elif voted==-1 %} downvoted{% endif %}" >
2021-07-25 21:59:15 +00:00
< div class = "{% if p.deleted_utc > 0 %}deleted {% endif %}d-flex flex-row-reverse flex-nowrap justify-content-end" >
2021-07-21 01:12:26 +00:00
2021-09-02 18:05:11 +00:00
{% if not p.is_image and p.thumb_url and not p.embed_url %}
2021-07-21 01:12:26 +00:00
< div class = "card-header bg-transparent border-0 d-none d-md-flex flex-row flex-nowrap pl-3 p-0" >
2021-09-03 14:08:32 +00:00
< a rel = "nofollow noopener noreferrer" href = "{{p.realurl(v)}}" style = "height: fit-content;" { % if not v or v . newtabexternal % } target = "_blank" { % endif % } > < img loading = "lazy" src = "{{p.thumb_url}}" class = "post-img d-none d-md-block" alt = "Unable to load image" > < / a >
2021-07-21 01:12:26 +00:00
< / div >
{% endif %}
2021-08-24 09:30:43 +00:00
< div id = "post-content" class = "{% if p.deleted_utc > 0 %}deleted {% endif %}card-block w-100 my-md-auto" >
2021-07-21 01:12:26 +00:00
2021-08-11 18:08:14 +00:00
< div class = "post-meta text-left mb-2" >
2021-08-28 11:56:39 +00:00
{% if p.bannedfor and p.author.banned_by %}
2021-09-23 17:31:34 +00:00
< a href = "javascript:void(0)" > < i class = "fad fa-gavel text-danger" data-toggle = "tooltip" data-placement = "bottom" title = "User was banned for this post by @{{p.author.banned_by.username}}" > < / i > < / a >
2021-08-11 22:26:04 +00:00
{% endif %}
2021-08-03 10:39:09 +00:00
{% if p.awards %}
2021-09-24 16:21:59 +00:00
{% for a in p.awards %}
2021-08-03 10:39:09 +00:00
< i class = "{{a.class_list}} px-1" data-toggle = "tooltip" data-placement = "bottom" title = "{{a.title}} Award given by @{{a.user.username}}" > < / i >
{% endfor %}
{% endif %}
2021-08-22 13:21:10 +00:00
{% if v and v.admin_level==6 and p.author.shadowbanned %}< i class = "fas fa-user-times text-admin" data-toggle = "tooltip" data-placement = "bottom" title = "Shadowbanned user" > < / i > {% endif %}
2021-09-23 17:35:42 +00:00
{% if p.stickied %}< i class = "fas fa-thumbtack fa-fw text-admin fa-rotate--45" data-toggle = "tooltip" data-placement = "bottom" title = "Pinned by @{{p.stickied}}" > < / i > {% endif %}
2021-08-22 13:21:10 +00:00
{% if p.is_pinned %}< i class = "fas fa-thumbtack fa-fw text-admin fa-rotate--45" data-toggle = "tooltip" data-placement = "bottom" title = "Pinned to profile" > < / i > {% endif %}
2021-09-23 17:31:34 +00:00
{% if p.distinguish_level %} < i class = "fas fa-broom text-admin" data-toggle = "tooltip" data-placement = "bottom" title = "{{'SITE_NAME' | app_config}} Admin, speaking officially" > < / i > {% endif %}
2021-07-21 01:12:26 +00:00
{% if p.is_bot %} < i class = "fad fa-robot text-info" data-toggle = "tooltip" data-placement = "bottom" data-original-title = "Bot" > < / i > {% endif %}
{% if p.over_18 %}< span class = "badge badge-danger text-small-extra mr-1" > +18< / span > {% endif %}
2021-08-24 17:44:23 +00:00
{% if p.private %}< span class = "badge border-warning border-1 text-small-extra" > Draft< / span > {% endif %}
2021-09-06 20:57:03 +00:00
{% if p.processing %}< span class = "badge border-warning border-1 text-small-extra" > uploading...< / span > {% endif %}
2021-07-31 13:58:11 +00:00
{% if p.active_flags %}< a class = "btn btn-primary" href = "javascript:void(0)" style = "padding:1px 5px; font-size:10px;" onclick = "document.getElementById('flaggers').classList.toggle('d-none')" > {{p.active_flags}} Reports< / a > {% endif %}
2021-09-23 17:31:34 +00:00
{% if p.author.verified %}< i class = "fas fa-badge-check align-middle ml-1" style = "color:#1DA1F2" data-toggle = "tooltip" data-placement = "bottom" title = "{{p.author.verified}}" > < / i >
2021-08-21 15:33:01 +00:00
{% endif %}
2021-09-13 15:58:52 +00:00
< a { % if v % } href = "{{p.author.url}}" { % else % } href = "/logged_out{{p.author.url}}" { % endif % } style = "color: #{{p.author.namecolor}}; font-weight: bold;" class = "user-name" > < img loading = "lazy" src = "{{p.author.profile_url}}" class = "profile-pic-25 mr-2" / > < span { % if p . author . patron and not p . distinguish_level % } class = "patron" style = "background-color:#{{p.author.namecolor}};" { % elif p . distinguish_level and ' rdrama ' in request . host % } class = "mod" { % endif % } > {{p.author.username}}< / span > < / a > {% if p.author.customtitle %} < bdi style = "color: #{{p.author.titlecolor}}" > {% if p.author.quadrant %}< img loading = "lazy" height = "20" src = "/assets/images/PCM/quadrants/{{p.author.quadrant}}.webp" > {% endif %}{{p.author.customtitle | safe}}< / bdi > {% endif %}
2021-07-21 01:12:26 +00:00
< span data-toggle = "tooltip" data-placement = "bottom" id = "timestamp" title = "" > {{p.age_string}}< / span >
2021-08-14 02:52:32 +00:00
({% if p.realurl(v) %}< a href = "/search/posts/?q=domain%3A{{p.domain}}&sort=new&t=all" { % if not v or v . newtabexternal % } target = "_blank" { % endif % } > {{p.domain}}< / a > {% else %}text post{% endif %})
2021-07-21 01:12:26 +00:00
{% if p.edited_utc %} Edited < span data-toggle = "tooltip" data-placement = "bottom" id = "edited_timestamp" title = "" > {{p.edited_string}}< / span > {% endif %}
{{p.views}} views
< / div >
2021-08-21 12:44:02 +00:00
{% if p.active_flags %}
< div id = "flaggers" class = "flaggers d-none" >
< strong > < i class = "far fa-fw fa-flag" > < / i > Reported by:< / strong >
< pre > < / pre >
< ul style = "padding-left:20px; margin-bottom: 0;" >
{% for f in p.ordered_flags %}
2021-09-06 22:17:33 +00:00
{% if not f.user.shadowbanned or (v and v.shadowbanned) %}
< li > < a style = "font-weight:bold" href = "{{f.user.url}}" > {{f.user.username}}< / a > {% if f.reason %}: {{f.reason | safe}}{% endif %} {% if v.admin_level==6 %}< a href = "javascript:void(0)" onclick = "post_toast('/del_report/p{{ f.id }}')" > [remove]< / a > {% endif %}< / li >
{% endif %}
2021-08-21 12:44:02 +00:00
{% endfor %}
< / ul >
< / div >
{% endif %}
2021-07-21 01:12:26 +00:00
{% if p.realurl(v) %}
2021-09-11 23:53:13 +00:00
< h1 id = "post-title" class = "card-title post-title text-left mb-md-3" > < a { % if not v or v . newtabexternal % } target = "_blank" { % endif % } rel = "nofollow noopener noreferrer" href = "{{p.realurl(v)}}" >
2021-09-12 04:57:52 +00:00
{% if p.club %}< span class = "patron font-weight-bolder" style = "background-color:red; font-size:12px;" > COUNTRY CLUB< / span > {% endif %}
2021-09-11 23:53:13 +00:00
{{title | safe}}
< / a > < / h1 >
2021-07-21 01:12:26 +00:00
{% else %}
2021-09-11 23:53:13 +00:00
< h1 id = "post-title" class = "card-title post-title text-left mb-md-3" >
2021-09-12 04:57:52 +00:00
{% if p.club %}< span class = "patron font-weight-bolder" style = "background-color:red; font-size:12px;" > COUNTRY CLUB< / span > {% endif %}
2021-09-11 23:53:13 +00:00
{{title | safe}}
< / h1 >
2021-07-21 01:12:26 +00:00
{% endif %}
< div id = "post-body" class = "post-body mt-3" >
{% if p.realurl(v) %}
{% if "streamable.com/" in p.realurl(v) %}
2021-09-06 22:52:32 +00:00
< div style = "width: 100%; height: 0px; position: relative; padding-bottom: 56.250%;" > < iframe loading = "lazy" src = "{{p.realurl(v)}}" frameborder = "0" width = "100%" height = "100%" allowfullscreen = "" style = "width: 100%; height: 100%; position: absolute;" > < / iframe > < / div >
2021-07-21 01:12:26 +00:00
< pre > < / pre >
{% elif "spotify.com/" in p.realurl(v) %}
{% if "spotify.com/embed/" in p.realurl(v) %}
{% set streamurl=p.realurl(v) %}
{% else %}
{% set streamurl=p.realurl(v).replace("spotify.com", "spotify.com/embed") %}
{% endif %}
2021-09-06 22:52:32 +00:00
< iframe loading = "lazy" src = "{{streamurl}}" width = "100%" height = "80" frameBorder = "0" allowtransparency = "true" allow = "encrypted-media" > < / iframe >
2021-07-21 01:12:26 +00:00
< pre > < / pre >
2021-09-05 19:19:48 +00:00
{% elif not p.embed_url and not p.is_image and not p.is_video %}
2021-09-07 00:43:52 +00:00
< a rel = "nofollow noopener noreferrer" href = "{{p.realurl(v)}}" { % if not v or v . newtabexternal % } target = "_blank" { % endif % } >
< div class = "d-flex d-md-none justify-content-between align-items-center border rounded p-2{% if p.realbody(v) %} mb-3{% endif %}" >
< span > {{p.domain|truncate(30, True)}}< / span >
< i class = "fas fa-external-link-alt text-small" > < / i >
< / div >
< / a >
2021-07-21 01:12:26 +00:00
{% endif %}
{% endif %}
2021-08-24 04:30:53 +00:00
2021-08-24 04:38:51 +00:00
< div id = "post-text" style = "z-index: 50" >
2021-09-02 18:05:11 +00:00
{% if p.is_image %}
2021-09-02 18:13:02 +00:00
< div class = "row no-gutters" >
2021-09-02 18:05:11 +00:00
< div class = "col" >
2021-09-02 20:33:48 +00:00
< a { % if not v or v . newtabexternal % } target = "_blank" { % endif % } rel = "nofollow noopener noreferrer" href = "{{p.realurl(v)}}" >
2021-09-03 14:08:32 +00:00
< img loading = "lazy" src = "{{p.realurl(v)}}" class = "img-fluid" style = "max-height:500px;" alt = "Unable to load image" >
2021-09-02 19:04:49 +00:00
< / a >
2021-09-02 18:05:11 +00:00
< / div >
< / div >
< pre > < / pre >
2021-09-05 19:19:48 +00:00
{% elif p.is_video %}
< div class = "row no-gutters" >
< div class = "col" >
2021-09-06 22:54:48 +00:00
< video controls preload = "metadata" style = "max-width: 100%" >
2021-09-05 19:19:48 +00:00
< source src = "{{ p.realurl(v) }}" type = "video/mp4" >
< / video >
< / div >
< / div >
< pre > < / pre >
2021-09-02 18:05:11 +00:00
{% endif %}
2021-08-24 04:38:51 +00:00
{{p.realbody(v) | safe}}
< / div >
2021-07-21 01:12:26 +00:00
2021-09-02 18:25:36 +00:00
{% if p.embed_url %}
{% if p.domain == "twitter.com" and (v and v.theme.split("_")[0] in ["light", "coffee", "4chan"]) %}
{% include "embeds/twitterlight.html" %}
{% elif "twitter.com" in p.domain %}
{% include "embeds/twitter.html" %}
{% elif "youtu" in p.domain %}
{% include "embeds/youtube.html" %}
{% endif %}
2021-07-21 01:12:26 +00:00
{% endif %}
< / div >
2021-08-21 17:48:25 +00:00
{% if v and v.id==p.author_id and not v.is_suspended %}
2021-07-30 05:31:38 +00:00
< div id = "edit-post-body-{{p.id}}" class = "d-none comment-write collapsed child" >
< form id = "post-edit-form-{{p.id}}" class = "d-flex flex-column" action = "/edit_post/{{p.id}}" method = "post" class = "input-group" >
2021-07-21 01:12:26 +00:00
< input type = "hidden" name = "formkey" value = "{{v.formkey}}" >
< input type = "hidden" name = "current_page" value = "{{request.path}}" >
2021-08-15 01:03:29 +00:00
< input name = "title" required placeholder = "title" value = "{{p.title}}" / >
2021-07-30 05:31:38 +00:00
< textarea name = "body" id = "post-edit-box-{{p.id}}" form = "post-edit-form-{{p.id}}" class = "comment-box form-control rounded" aria-label = "With textarea" placeholder = "Add text to your post..." rows = "10" > {{p.body}}< / textarea >
2021-07-21 01:12:26 +00:00
< div class = "comment-format" >
2021-07-30 05:31:38 +00:00
< small class = "format pl-0" > < i class = "fas fa-bold" aria-hidden = "true" onclick = "makeBold('post-edit-box-{{p.id}}')" data-toggle = "tooltip" data-placement = "bottom" title = "Bold" > < / i > < / small >
< small class = "format" > < i class = "fas fa-italic" aria-hidden = "true" onclick = "makeItalics('post-edit-box-{{p.id}}')" data-toggle = "tooltip" data-placement = "bottom" title = "Italicize" > < / i > < / small >
< small class = "format" > < i class = "fas fa-quote-right" aria-hidden = "true" onclick = "makeQuote('post-edit-box-{{p.id}}')" data-toggle = "tooltip" data-placement = "bottom" title = "Quote" > < / i > < / small >
< small class = "format" > < span class = "font-weight-bolder text-uppercase" onclick = "commentForm('post-edit-box-{{p.id}}');getGif()" aria-hidden = "true" data-toggle = "modal" data-target = "#gifModal" data-toggle = "tooltip" data-placement = "bottom" title = "Add GIF" > GIF< / span > < / small >
< small class = "format" > < i class = "fas fa-smile-beam" onclick = "loadEmojis('post-edit-box-{{p.id}}')" aria-hidden = "true" data-toggle = "modal" data-target = "#emojiModal" data-toggle = "tooltip" data-placement = "bottom" title = "Add Emoji" > < / i > < / small >
2021-07-21 01:12:26 +00:00
< small class = "format d-none" > < i class = "fas fa-link" aria-hidden = "true" > < / i > < / small >
2021-07-30 05:31:38 +00:00
< a href = "javascript:void(0)" onclick = "togglePostEdit('{{p.id}}')" class = "btn btn-link text-muted ml-auto cancel-form" > Cancel< / a >
< button form = "post-edit-form-{{p.id}}" class = "btn btn-primary ml-2" > Save Edit< / button > < / div > < / form >
2021-07-21 01:12:26 +00:00
< / div >
{% endif %}
2021-08-13 02:35:17 +00:00
{% if p.embed_url and "http" not in p.embed_url %}
< div id = "crosspost-embed" >
2021-08-15 01:03:29 +00:00
< div class = "row no-gutters" >
2021-08-13 02:35:17 +00:00
< div id = "frontpage" class = "col-12 pt-0" >
2021-08-15 01:03:29 +00:00
< div class = "posts" id = "posts" >
2021-08-13 18:55:59 +00:00
{{ p.embed_url | post_embed(v) | safe }}
2021-08-13 02:35:17 +00:00
< / div >
2021-08-15 01:03:29 +00:00
< / div >
< / div >
2021-08-13 02:35:17 +00:00
< / div >
{% endif %}
2021-08-15 01:03:29 +00:00
2021-07-21 01:12:26 +00:00
< div class = "d-none d-md-flex justify-content-between align-items-center mt-2" >
< div class = "post-actions mt-2" >
< ul class = "list-inline text-right d-flex" >
2021-08-13 01:52:01 +00:00
< li class = "list-inline-item" > < a { % if v % } href = "{{p.permalink}}" { % else % } href = "/logged_out{{p.permalink}}" { % endif % } > < i class = "fas fa-comment-dots" > < / i > {{p.comment_count}}< / a > < / li >
2021-07-21 01:12:26 +00:00
{% if v and v.id==p.author_id %}
2021-07-29 07:37:34 +00:00
{% if p.private %}
2021-08-11 17:01:19 +00:00
< li class = "list-inline-item" > < a href = "javascript:void(0)" onclick = "post_toast('/publish/{{p.id}}')" > < i class = "fas fa-globe" > < / i > Publish< / a > < / li >
2021-07-29 07:37:34 +00:00
{% endif %}
2021-07-30 05:31:38 +00:00
< li class = "list-inline-item" > < a href = "javascript:void(0)" onclick = "togglePostEdit('{{p.id}}')" > < i class = "fas fa-edit" > < / i > Edit< / a > < / li >
2021-07-21 01:12:26 +00:00
{% endif %}
2021-09-23 17:35:12 +00:00
< li class = "list-inline-item" > < a href = "/votes?link={{p.fullname}}" > < i class = "fas fa-arrows-v" > < / i > Votes< / a > < / li >
2021-07-23 19:28:25 +00:00
2021-07-27 11:07:27 +00:00
{% if v and v.id!=p.author_id %}
2021-07-31 04:48:47 +00:00
< li class = "list-inline-item text-muted d-none d-md-inline-block" > < a href = "javascript:void(0)" data-toggle = "modal" data-target = "#awardModal" onclick = "awardModal('/post/{{p.id}}/awards')" > < i class = "fas fa-gift fa-fw" > < / i > Give Award< / a > < / li >
2021-07-22 19:02:39 +00:00
{% endif %}
2021-07-22 18:52:13 +00:00
2021-09-02 21:11:37 +00:00
< li class = "list-inline-item" > < a href = "javascript:void(0);" role = "button" class = "copy-link" data-clipboard-text = "{% if 'rdrama' in request.host %}https://taytay.life{{p.permalink}}{% else %}{{p.permalink | full_link}}{% endif %}" > < i class = "fas fa-copy" > < / i > Copy link< / a > < / li >
2021-07-21 01:12:26 +00:00
2021-09-08 12:27:29 +00:00
{% if v %}
< li id = "subscribe-{{p.id}}" class = "{% if p.id in v.subscribed_idlist() %}d-none{% endif %} list-inline-item" > < a href = "javascript:void(0)" onclick = "post_toast2('/subscribe/{{p.id}}','subscribe-{{p.id}}','unsubscribe-{{p.id}}')" > < i class = "fas fa-eye" > < / i > Subscribe< / a > < / li >
< li id = "unsubscribe-{{p.id}}" class = "{% if p.id not in v.subscribed_idlist() %}d-none{% endif %} list-inline-item" > < a href = "javascript:void(0)" onclick = "post_toast2('/unsubscribe/{{p.id}}','subscribe-{{p.id}}','unsubscribe-{{p.id}}')" > < i class = "fas fa-eye-slash" > < / i > Unsubscribe< / a > < / li >
2021-07-21 01:12:26 +00:00
2021-09-08 20:13:20 +00:00
< li id = "save-{{p.id}}" class = "{% if p.id in v.saved_idlist() %}d-none{% endif %} list-inline-item" > < a href = "javascript:void(0)" onclick = "post_toast2('/save_post/{{p.id}}','save-{{p.id}}','unsave-{{p.id}}')" > < i class = "fas fa-save" > < / i > Save< / a > < / li >
< li id = "unsave-{{p.id}}" class = "{% if not p.id in v.saved_idlist() %}d-none{% endif %} list-inline-item" > < a href = "javascript:void(0)" onclick = "post_toast2('/unsave_post/{{p.id}}','save-{{p.id}}','unsave-{{p.id}}')" > < i class = "fas fa-save" > < / i > Unsave< / a > < / li >
{% endif %}
2021-07-21 01:12:26 +00:00
2021-08-01 03:25:06 +00:00
< li class = "list-inline-item" > < a href = "javascript:void(0)" data-toggle = "modal" data-dismiss = "modal" data-target = "#reportPostModal" onclick = "report_postModal('{{p.id}}', '{{p.author.username}}')" > < i class = "fas fa-flag" > < / i > Report< / a > < / li >
2021-07-21 01:12:26 +00:00
{% if v and v.id==p.author_id %}
2021-09-08 12:27:29 +00:00
< li id = "pin-profile-{{p.id}}" class = "{% if p.is_stickied %}d-none{% endif %} list-inline-item" > < a class = "text-muted" href = "javascript:void(0)" onclick = "post_toast2('/pin/{{p.id}}','unpin-profile-{{p.id}}','pin-profile-{{p.id}}')" > < i class = "fas fa-thumbtack" > < / i > Pin to profile< / a > < / li >
< li id = "unpin-profile-{{p.id}}" class = "{% if not p.is_stickied %}d-none{% endif %} list-inline-item" > < a class = "text-muted" href = "javascript:void(0)" onclick = "post_toast2('/pin/{{p.id}}','unpin-profile-{{p.id}}','pin-profile-{{p.id}}')" > < i class = "fas fa-thumbtack" > < / i > Unpin from profile< / a > < / li >
2021-09-15 03:03:54 +00:00
{% if p.deleted_utc > 0 %}
< li class = "list-inline-item" > < a href = "javascript:void(0)" onclick = "post_toast('/undelete_post/{{p.id}}')" > < i class = "fas fa-trash-alt" > < / i > Undelete< / a > < / li >
{% else %}
< li class = "list-inline-item" > < a href = "javascript:void(0)" data-toggle = "modal" data-dismiss = "modal" data-target = "#deletePostModal" onclick = "delete_postModal('{{p.id}}')" > < i class = "fas fa-trash-alt" > < / i > Delete< / a > < / li >
{% endif %}
2021-07-21 01:12:26 +00:00
{% endif %}
{% if v and v.admin_level>=3 %}
2021-09-08 12:27:29 +00:00
< li id = "pin-{{p.id}}" class = "{% if p.stickied %}d-none{% endif %} list-inline-item" > < a class = "text-info" href = "javascript:void(0)" onclick = "post_toast2('/sticky/{{p.id}}','pin-{{p.id}}','unpin-{{p.id}}')" > < i class = "fas fa-thumbtack" > < / i > Pin< / a > < / li >
< li id = "unpin-{{p.id}}" class = "{% if not p.stickied %}d-none{% endif %} list-inline-item" > < a class = "text-info" href = "javascript:void(0)" onclick = "post_toast2('/sticky/{{p.id}}','/sticky/{{p.id}}','pin-{{p.id}}','unpin-{{p.id}}')" > < i class = "fas fa-thumbtack" > < / i > Unpin< / a > < / li >
2021-07-29 07:37:34 +00:00
{% if v==p.author %}
2021-09-08 12:27:29 +00:00
< li id = "distinguish-{{p.id}}" class = "{% if p.distinguish_level %}d-none{% endif %} list-inline-item" > < a class = "text-info" href = "javascript:void(0)" onclick = "post_toast2('/distinguish/{{p.id}}','distinguish-{{p.id}}','undistinguish-{{p.id}}')" > < i class = "fas fa-crown" > < / i > Distinguish< / a > < / li >
< li id = "undistinguish-{{p.id}}" class = "{% if not p.distinguish_level %}d-none{% endif %} list-inline-item" > < a class = "text-info" href = "javascript:void(0)" onclick = "post_toast2('/distinguish/{{p.id}}','distinguish-{{p.id}}','undistinguish-{{p.id}}')" > < i class = "fas fa-crown" > < / i > Undistinguish< / a > < / li >
2021-07-29 07:37:34 +00:00
{% endif %}
2021-07-21 01:12:26 +00:00
{% endif %}
{% if v %}
2021-09-13 21:04:28 +00:00
{% if v.admin_level >=3 or v.id == p.author.id and v.paid_dues %}
2021-09-12 06:24:05 +00:00
< li id = "club-{{p.id}}" class = "{% if p.club %}d-none{% endif %} list-inline-item" > < a class = "text-info" href = "javascript:void(0)" onclick = "post_toast2('/toggle_club/{{p.id}}','club-{{p.id}}','unclub-{{p.id}}')" > < i class = "fas fa-eye-slash" > < / i > Mark club< / a > < / li >
< li id = "unclub-{{p.id}}" class = "{% if not p.club %}d-none{% endif %} list-inline-item" > < a class = "text-info" href = "javascript:void(0)" onclick = "post_toast2('/toggle_club/{{p.id}}','club-{{p.id}}','unclub-{{p.id}}')" > < i class = "fas fa-eye" > < / i > Unmark club< / a > < / li >
2021-09-11 23:40:58 +00:00
{% endif %}
2021-07-29 07:37:34 +00:00
{% if v.admin_level >=3 %}
2021-09-12 06:41:19 +00:00
{% if "/reported/" in request.path %}
2021-09-12 06:32:21 +00:00
{% if v.id != p.author.id %}< li class = "list-inline-item" > < a class = "text-danger" href = "javascript:void(0)" onclick = "post_toast('/ban_post/{{p.id}}')" > < i class = "fas fa-ban" > < / i > Remove< / a > < / li > {% endif %}
< li class = "list-inline-item" > < a class = "text-success" href = "javascript:void(0)" onclick = "post_toast('/unban_post/{{p.id}}')" > < i class = "fas fa-check" > < / i > Approve< / a > < / li >
{% else %}
{% if v.id != p.author.id %}< li id = "remove-{{p.id}}" class = "{% if p.is_banned %}d-none{% endif %} list-inline-item" > < a class = "text-danger" href = "javascript:void(0)" onclick = "post_toast2('/ban_post/{{p.id}}','remove-{{p.id}}','approve-{{p.id}}')" > < i class = "fas fa-ban" > < / i > Remove< / a > < / li > {% endif %}
< li id = "approve-{{p.id}}" class = "{% if not p.is_banned %}d-none{% endif %} list-inline-item" > < a class = "text-success" href = "javascript:void(0)" onclick = "post_toast2('/unban_post/{{p.id}}','remove-{{p.id}}','approve-{{p.id}}')" > < i class = "fas fa-check" > < / i > Approve< / a > < / li >
{% endif %}
2021-07-29 07:37:34 +00:00
{% endif %}
2021-07-21 01:12:26 +00:00
2021-07-31 11:14:11 +00:00
{% if v.id == p.author_id or v.admin_level >= 3 %}
2021-09-08 20:02:36 +00:00
< li id = "mark-{{p.id}}" class = "{% if p.over_18 %}d-none{% endif %} list-inline-item" > < a class = "text-danger" href = "javascript:void(0)" onclick = "post_toast2('/toggle_post_nsfw/{{p.id}}','mark-{{p.id}}','unmark-{{p.id}}')" > < i class = "fas fa-eye-evil" > < / i > Mark +18< / a > < / li >
< li id = "unmark-{{p.id}}" class = "{% if not p.over_18 %}d-none{% endif %} list-inline-item" > < a class = "text-danger" href = "javascript:void(0)" onclick = "post_toast2('/toggle_post_nsfw/{{p.id}}','mark-{{p.id}}','unmark-{{p.id}}')" > < i class = "fas fa-eye-evil" > < / i > Unmark +18< / a > < / li >
2021-07-31 11:14:11 +00:00
{% endif %}
2021-07-29 07:37:34 +00:00
{% if v.admin_level >= 4 and p.oauth_app %}
< li class = "list-inline-item" > < a href = "{{p.oauth_app.permalink}}" > < i class = "fas fa-code" > < / i > API App< / a > < / li >
{% endif %}
2021-07-21 01:12:26 +00:00
2021-07-29 07:37:34 +00:00
{% if not v.id==p.author_id and v.admin_level == 0 %}
2021-09-08 12:27:29 +00:00
< li id = "block-user-{{p.id}}" class = "list-inline-item {% if p.is_blocking %} d-none{% endif %}" > < a href = "javascript:void(0)" onclick = "post_toast2('/settings/block?username={{p.author.username}}','block-user-{{p.id}}','unblock-user-{{p.id}}')" > < i class = "fas fa-eye-slash" > < / i > Block user< / a > < / li >
< li id = "unblock-user-{{p.id}}" class = "list-inline-item {% if not p.is_blocking %} d-none{% endif %}" > < a href = "javascript:void(0)" onclick = "post_toast2('/settings/unblock?username={{p.author.username}}','block-user-{{p.id}}','unblock-user-{{p.id}}')" > < i class = "fas fa-eye" > < / i > Unblock user< / a > < / li >
2021-07-29 07:37:34 +00:00
{% endif %}
2021-07-28 21:31:50 +00:00
2021-07-29 07:37:34 +00:00
{% if not v.id==p.author_id and v.admin_level == 1 %}
2021-09-08 12:27:29 +00:00
< li id = "sex-user-{{p.id}}" class = "list-inline-item{% if p.is_blocking %} d-none{% endif %}" > < a class = "text-danger" href = "javascript:void(0)" onclick = "post_toast2('/settings/block?username={{p.author.username}}','sex-user-{{p.id}}','unsex-user-{{p.id}}')" > < i class = "fas fa-user-slash text-danger" > < / i > Ban user< / a > < / li >
< li id = "unsex-user-{{p.id}}" class = "list-inline-item{% if not p.is_blocking %} d-none{% endif %}" > < a class = "text-success" href = "javascript:void(0)" onclick = "post_toast2('/settings/unblock?username={{p.author.username}}','sex-user-{{p.id}}','unsex-user-{{p.id}}')" > < i class = "fas fa-user-slash text-success" > < / i > Unban user< / a > < / li >
2021-07-29 07:37:34 +00:00
{% endif %}
{% if v.admin_level >=3 and v.id!=p.author_id %}
2021-09-19 13:08:47 +00:00
< li id = "ban-{{p.id}}" class = "{% if p.author.is_suspended %}d-none{% endif %} list-inline-item" > < a class = "text-danger" href = "javascript:void(0)" data-toggle = "modal" data-target = "#banModal" onclick = "banModal('/post/{{p.id}}', '{{ p.author.id }}', '{{p.author.username}}')" > < i class = "fas fa-user-slash text-danger fa-fw" > < / i > Ban user< / a > < / li >
2021-09-08 12:27:29 +00:00
< li id = "unban-{{p.id}}" class = "{% if not p.author.is_suspended %}d-none{% endif %} list-inline-item" > < a class = "text-danger" id = "unexile2-user-{{p.id}}" href = "javascript:void(0)" onclick = "post_toast2('/unban_user/{{p.author_id}}','ban-{{p.id}}','unban-{{p.id}}')" > < i class = "fas fa-user-slash" > < / i > Unban user< / a > < / li >
2021-07-29 07:37:34 +00:00
{% endif %}
2021-07-21 01:12:26 +00:00
{% endif %}
2021-09-08 12:28:31 +00:00
< / ul >
2021-07-21 01:12:26 +00:00
< / div >
< / div >
< / div >
<!-- Voting on "medium" devices or larger, hidden on smaller devices -->
{% if v %}
< div id = "voting" class = "voting d-none d-md-block mb-auto" >
2021-07-30 05:31:38 +00:00
< div id = "post-{{p.id}}-up" tabindex = "0" data-id-up = "{{p.id}}" data-content-type = "post" class = "mx-auto arrow-up upvote-button post-{{p.id}}-up {% if voted==1 %}active{% endif %}" > < / div >
2021-07-21 01:12:26 +00:00
2021-07-30 05:31:38 +00:00
< span id = "post-score-{{p.id}}" class = "score post-score-{{p.id}} {% if voted==1 %}score-up{% elif voted==-1%}score-down{% endif %}" data-toggle = "tooltip" data-placement = "right" data-original-title = "+{{ups}} | -{{downs}}" > {{score}}< / span >
2021-09-05 22:07:18 +00:00
2021-09-06 17:03:51 +00:00
< div { % if environ . get ( ' DISABLE_DOWNVOTES ' ) = = ' 1 ' % } style = "display:None!important" { % endif % } id = "post-{{p.id}}-down" tabindex = "0" data-id-down = "{{p.id}}" data-content-type = "post" class = "text-muted mx-auto arrow-down downvote-button post-{{p.id}}-down {% if voted==-1 %}active{% endif %}" > < / div >
2021-07-21 01:12:26 +00:00
< / div >
{% else %}
< div id = "voting" class = "voting d-none d-md-block mb-auto" >
2021-07-30 05:31:38 +00:00
< div id = "post-{{p.id}}-up" tabindex = "0" class = "arrow-up mx-auto" onclick = "location.href='/login?redirect={{request.path | urlencode}}';" >
2021-07-21 01:12:26 +00:00
< / div >
2021-08-23 22:00:22 +00:00
< span id = "post-{{p.id}}-score-none" class = "score text-muted" { % if not p . is_banned % } data-toggle = "tooltip" data-placement = "right" data-original-title = "+{{ups}} | -{{downs}}" { % endif % } > {{score}}< / span >
2021-09-06 17:03:51 +00:00
< div { % if environ . get ( ' DISABLE_DOWNVOTES ' ) = = ' 1 ' % } style = "display:None!important" { % endif % } id = "post-{{p.id}}-down" tabindex = "0" class = "arrow-down mx-auto" onclick = "location.href='/login?redirect={{request.path | urlencode}}';" > < / div >
2021-07-21 01:12:26 +00:00
< / div >
{% endif %}
< / div >
< / div >
< / div >
2021-09-05 19:19:48 +00:00
{% if not p.is_image and not p.is_video %}
2021-09-02 18:13:02 +00:00
< div class = "row no-gutters d-block d-md-none" >
< div class = "col" >
2021-09-02 20:33:48 +00:00
< a { % if not v or v . newtabexternal % } target = "_blank" { % endif % } rel = "nofollow noopener noreferrer" href = "{{p.realurl(v)}}" > < / a >
2021-09-02 18:13:02 +00:00
< / div >
< / div >
{% endif %}
< / div >
2021-07-21 01:12:26 +00:00
< div class = "row mb-3 d-block d-md-none" >
< div class = "col-12" >
< div class = "post-actions" >
< ul class = "list-inline text-right d-flex" >
2021-08-13 01:52:01 +00:00
< li class = "list-inline-item mr-auto" > < a { % if v % } href = "{{p.permalink}}" { % else % } href = "/logged_out{{p.permalink}}" { % endif % } > < i class = "fas fa-comment-dots" > < / i > {{p.comment_count}}< / a > < / li >
2021-07-21 01:12:26 +00:00
2021-09-02 21:11:37 +00:00
< li class = "list-inline-item" > < a href = "javascript:void(0);" role = "button" class = "copy-link" data-clipboard-text = "{% if 'rdrama' in request.host %}https://taytay.life{{p.permalink}}{% else %}{{p.permalink | full_link}}{% endif %}" > < i class = "fas fa-link" > < / i > Copy link< / a > < / li >
2021-07-21 01:12:26 +00:00
{% if v %}
< li class = "list-inline-item" >
< a href = "#" data-toggle = "modal" data-target = "#actionsModal" >
< i class = "fas fa-ellipsis-h" > < / i >
< / a >
< / li >
{% endif %}
2021-07-30 05:31:38 +00:00
< li id = "voting-{{p.id}}-mobile" class = "voting list-inline-item d-md-none{% if voted==1 %} upvoted{% elif voted==-1 %} downvoted{% endif %}" >
2021-07-21 01:12:26 +00:00
{% if v %}
2021-07-30 05:31:38 +00:00
< span id = "post-{{p.id}}-up-mobile" tabindex = "0" data-id-up = "{{p.id}}" data-content-type = "post" class = "mr-2 arrow-up upvote-button post-{{p.id}}-up {% if voted==1 %}active{% endif %}" >
2021-07-21 01:12:26 +00:00
< / span >
{% else %}
2021-07-30 05:31:38 +00:00
< span id = "arrow-{{p.id}}-mobile-up" tabindex = "0" class = "mr-2 arrow-mobile-up" onclick = "location.href='/login?redirect={{request.path | urlencode}}';" >
2021-07-21 01:12:26 +00:00
< i class = "fas fa-arrow-alt-up mx-0" aria-hidden = "true" > < / i >
< / span >
{% endif %}
2021-07-30 05:31:38 +00:00
< span id = "post-score-{{p.id}}" class = "score post-score-{{p.id}} {% if voted==1 %}score-up{% elif voted==-1%}score-down{% endif %}" data-toggle = "tooltip" data-placement = "top" data-original-title = "+{{ups}} | -{{downs}}" > {{score}}< / span >
2021-07-21 01:12:26 +00:00
{% if v %}
2021-09-06 17:03:51 +00:00
< span { % if environ . get ( ' DISABLE_DOWNVOTES ' ) = = ' 1 ' % } style = "display:None!important" { % endif % } id = "post-{{p.id}}-down-mobile" tabindex = "0" data-id-down = "{{p.id}}" data-content-type = "post" class = "ml-2 my-0 arrow-down downvote-button post-{{p.id}}-down {% if voted==-1 %}active{% endif %}" > < / span >
2021-07-21 01:12:26 +00:00
{% else %}
2021-09-06 17:03:51 +00:00
< span { % if environ . get ( ' DISABLE_DOWNVOTES ' ) = = ' 1 ' % } style = "display:None!important" { % endif % } id = "arrow-{{p.id}}-mobile-down" tabindex = "0" class = "arrow-mobile-down ml-2 my-0" onclick = "location.href='/login?redirect={{request.path | urlencode}}';" >
2021-09-05 22:07:18 +00:00
< i class = "fas fa-arrow-alt-down mx-0" aria-hidden = "true" > < / i >
< / span >
2021-07-21 01:12:26 +00:00
{% endif %}
< / li >
< / ul >
< / div >
< / div >
< / div >
< div class = "row border-md-0 comment-section pb-3" >
< div class = "col border-top" >
< div class = "comments-count py-3" >
< div class = "dropdown dropdown-actions" >
< button class = "btn btn-secondary dropdown-toggle" type = "button" id = "dropdownMenuButton" data-toggle = "dropdown" aria-haspopup = "true" aria-expanded = "false" >
{% if sort=="top" %}< i class = "fas fa-arrow-alt-circle-up mr-1" > < / i > {% endif %}
{% if sort=="bottom" %}< i class = "fas fa-arrow-alt-circle-down mr-1" > < / i > {% endif %}
{% if sort=="new" %}< i class = "fas fa-sparkles mr-1" > < / i > {% endif %}
2021-08-27 11:32:55 +00:00
{% if sort=="old" %}< i class = "fas fa-book mr-1" > < / i > {% endif %}
2021-07-21 01:12:26 +00:00
{% if sort=="controversial" %}< i class = "fas fa-bullhorn mr-1" > < / i > {% endif %}
{{sort | capitalize}}
< / button >
< div class = "dropdown-menu" aria-labelledby = "dropdownMenuButton" x-placement = "bottom-start" style = "position: absolute; will-change: transform; top: 0px; left: 0px; transform: translate3d(0px, 31px, 0px);" >
{% if sort != "top" %}< a class = "dropdown-item" href = "?sort=top" > < i class = "fas fa-arrow-alt-circle-up mr-2" > < / i > Top< / a > {% endif %}
{% if sort != "bottom" %}< a class = "dropdown-item" href = "?sort=bottom" > < i class = "fas fa-arrow-alt-circle-down mr-2" > < / i > Bottom< / a > {% endif %}
{% if sort != "new" %}< a class = "dropdown-item" href = "?sort=new" > < i class = "fas fa-sparkles mr-2" > < / i > New< / a > {% endif %}
{% if sort != "old" %}< a class = "dropdown-item" href = "?sort=old" > < i class = "fas fa-book mr-2" > < / i > Old< / a > {% endif %}
{% if sort != "controversial" %}< a class = "dropdown-item" href = "?sort=controversial" > < i class = "fas fa-bullhorn mr-2" > < / i > Controversial< / a > {% endif %}
< / div >
{% if linked_comment and p.comment_count >= 2%}
< pre > < / pre >
2021-08-13 01:52:01 +00:00
< div class = "total" > < a { % if v % } href = "{{p.permalink}}" { % else % } href = "/logged_out{{p.permalink}}" { % endif % } > View entire discussion< / a > < / div >
2021-07-21 01:12:26 +00:00
{% endif %}
< / div >
< / div >
< div id = "comment-form-space-{{p.fullname}}" class = "comment-write mb-3" >
2021-07-31 06:56:19 +00:00
< form id = "reply-to-{{p.fullname}}" class = "input-group" action = "/comment" method = "post" >
2021-07-21 01:12:26 +00:00
< input type = "hidden" name = "formkey" value = "{{v.formkey}}" >
2021-07-30 05:31:38 +00:00
< input type = "hidden" name = "parent_fullname" value = "t2_{{p.id}}" >
< input id = "reply-form-submission-{{p.fullname}}" type = "hidden" name = "submission" value = "{{p.id}}" >
2021-07-21 01:12:26 +00:00
{% if v %}
< textarea id = "reply-form-body-{{p.fullname}}" class = "comment-box form-control rounded" id = "comment-form" name = "body" form = "reply-to-{{p.fullname}}" aria-label = "With textarea" placeholder = "Add your comment..." rows = "3" > < / textarea >
{% endif %}
< div class = "comment-format" >
< a class = "btn btn-secondary format d-inline-block m-0" href = "javascript:void(0)" class = "format pl-0" > < i class = "fas fa-bold" onclick = "makeBold('reply-form-body-{{p.fullname}}')" data-toggle = "tooltip" data-placement = "bottom" title = "Bold" > < / i > < / a >
< a class = "btn btn-secondary format d-inline-block m-0" href = "javascript:void(0)" > < i class = "fas fa-italic" onclick = "makeItalics('reply-form-body-{{p.fullname}}')" data-toggle = "tooltip" data-placement = "bottom" title = "Italicize" > < / i > < / a >
< a class = "btn btn-secondary format d-inline-block m-0" href = "javascript:void(0)" > < i class = "fas fa-quote-right" onclick = "makeQuote('reply-form-body-{{p.fullname}}')" data-toggle = "tooltip" data-placement = "bottom" title = "Quote" > < / i > < / a >
2021-09-03 17:03:25 +00:00
< label class = "btn btn-secondary format d-inline-block m-0" for = "gif-reply-btn-{{p.fullname}}" >
2021-07-21 01:12:26 +00:00
< span id = "gif-reply-btn-{{p.fullname}}" class = "font-weight-bolder text-uppercase" onclick = "commentForm('reply-form-body-{{p.fullname}}');getGif()" aria-hidden = "true" data-toggle = "modal" data-target = "#gifModal" data-toggle = "tooltip" data-placement = "bottom" title = "Add GIF" > GIF< / span >
< / label >
2021-09-03 17:03:25 +00:00
< label class = "btn btn-secondary format d-inline-block m-0" for = "emoji-reply-btn-{{p.fullname}}" >
2021-07-21 01:12:26 +00:00
< div id = "emoji-reply-btn-{{p.fullname}}" onclick = "loadEmojis('reply-form-body-{{p.fullname}}')" aria-hidden = "true" data-toggle = "modal" data-target = "#emojiModal" data-toggle = "tooltip" data-placement = "bottom" title = "Add Emoji" > < i class = "fas fa-smile-beam" > < / i > < / div >
< / label >
2021-09-03 17:03:25 +00:00
< label class = "format btn btn-secondary m-0 ml-1 {% if v %}d-inline-block{% else %}d-none{% endif %}" for = "file-upload-reply-{{p.fullname}}" >
2021-07-30 05:31:38 +00:00
< div id = "filename-show-reply-{{p.id}}" > < i class = "far fa-image" > < / i > < / div >
< input id = "file-upload-reply-{{p.fullname}}" type = "file" name = "file" accept = "image/*" onchange = "document.getElementById('filename-show-reply-{{p.id}}').innerHTML='image';" hidden >
2021-07-21 01:12:26 +00:00
< / label >
<!--
< div class = "custom-control custom-checkbox" >
< input type = "checkbox" class = "custom-control-input" id = "nsfwCheck-{{p.fullname}}" name = "over_18" form = "reply-to-{{p.fullname}}" >
2021-09-03 17:03:25 +00:00
< label class = "custom-control-label" for = "nsfwCheck" > +18< / label >
2021-07-21 01:12:26 +00:00
< / div >
--> < a id = "save-reply-to-{{p.fullname}}" href = "javascript:void(0)" form = "reply-to-{{p.fullname}}" class = "btn btn-primary text-whitebtn ml-auto" onclick = "post_comment('{{p.fullname}}')" > Comment< / a >
< / div >
< / form >
< / div >
2021-08-23 22:00:22 +00:00
{% if not v and not p.is_banned %}
2021-07-21 01:12:26 +00:00
< div class = "comment-write mb-3" >
< textarea class = "comment-box form-control rounded" name = "body" aria-label = "With textarea" placeholder = "Add your comment..." rows = "3" onclick = "location.href='/login?redirect={{request.path | urlencode}}';" > < / textarea >
< / div >
{% if p.comment_count >= 2 %}
< div class = "card border-0 bg-light mt-4" >
< div class = "card-body" >
< h5 class = "card-title" > Jump in the discussion.< / h5 >
2021-08-04 16:21:10 +00:00
< p class = "card-text" > No email address required.< / p >
2021-07-21 01:12:26 +00:00
< div >
< a href = "/signup?redirect={{request.path | urlencode}}" class = "btn btn-primary" > Sign up< / a >
< a href = "/login?redirect={{request.path | urlencode}}" class = "btn btn-link text-muted" > Sign in< / a >
< / div >
< / div >
< / div >
{% endif %}
{% endif %}
{% if p.replies %}
< div class = "comment-section" >
2021-08-15 01:03:29 +00:00
{% with comments=p.replies %}
2021-09-17 11:40:25 +00:00
{% include "comments.html" %}
2021-08-15 01:03:29 +00:00
{% endwith %}
2021-07-21 01:12:26 +00:00
< / div >
{% elif not p.replies and p.deleted_utc == 0 %}
< div class = "comment-section text-center py-7" >
< span class = "fa-stack fa-2x text-muted mb-4" >
< i class = "fas fa-square text-gray-500 opacity-25 fa-stack-2x" > < / i >
< i class = "fas text-gray-500 fa-ghost fa-stack-1x text-lg" > < / i >
< / span >
< h2 class = "h5" > Be the first to comment!< / h2 >
{% if v %}
< p class = "text-muted" > This comment section is a ghost town...< / p >
{% else %}
< p class = "text-muted" > This comment section is a ghost town. < a href = "/login?redirect={{request.path | urlencode}}" > Sign in< / a > < / p >
{% endif %}
< / div >
{% endif %}
< / div >
< / div >
{% if v and v.id==p.author_id %}
2021-09-17 11:40:25 +00:00
{% include "delete_post_modal.html" %}
2021-07-21 01:12:26 +00:00
{% endif %}
2021-09-17 11:40:25 +00:00
{% endblock %}