aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/templates/delete_comment.html
diff options
context:
space:
mode:
authorJames Taylor <user234683@users.noreply.github.com>2020-10-21 19:58:31 -0700
committerJames Taylor <user234683@users.noreply.github.com>2020-10-21 19:58:31 -0700
commitd3230e8daf6af80f397ec41df2b8a3872b5b9483 (patch)
tree22d1d3abb00a2cdbae1211192cd43915198fa443 /youtube/templates/delete_comment.html
parent8b54a5f3aa376651bf063baa6893fe9b7f0e2ca0 (diff)
downloadyt-local-d3230e8daf6af80f397ec41df2b8a3872b5b9483.tar.lz
yt-local-d3230e8daf6af80f397ec41df2b8a3872b5b9483.tar.xz
yt-local-d3230e8daf6af80f397ec41df2b8a3872b5b9483.zip
Remove commenting system. Because:
- Actually using it will result in comments being shadowbanned, even those posted from Youtube's interfacs, because your account gets downranked since no analytics are present so it looks like a bot posting the comment. - It's been broken for awhile
Diffstat (limited to 'youtube/templates/delete_comment.html')
-rw-r--r--youtube/templates/delete_comment.html21
1 files changed, 0 insertions, 21 deletions
diff --git a/youtube/templates/delete_comment.html b/youtube/templates/delete_comment.html
deleted file mode 100644
index 28c8f2a..0000000
--- a/youtube/templates/delete_comment.html
+++ /dev/null
@@ -1,21 +0,0 @@
-{% set page_title = 'Delete comment?' %}
-{% extends "base.html" %}
-
-{% block style %}
- main > div, main > form{
- margin: auto;
- margin-top:20px;
- width: 640px;
- }
-{% endblock style %}
-
-{% block main %}
- <div>Are you sure you want to delete this comment?</div>
- <form action="" method="POST">
- {% for parameter_name, parameter_value in parameters %}
- <input type="hidden" name="{{ parameter_name }}" value="{{ parameter_value }}">
- {% endfor %}
- <input type="submit" value="Yes, delete it">
- </form>
-{% endblock %}
-