aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/templates/comments_page.html
diff options
context:
space:
mode:
authorJames Taylor <28744867+user234683@users.noreply.github.com>2020-10-11 18:52:34 -0700
committerGitHub <noreply@github.com>2020-10-11 18:52:34 -0700
commit2cfc6dec39ccdcc0c5fe2eea73f47b7040e51833 (patch)
tree7bad2fcf78184195bab8472acace235377ef7eed /youtube/templates/comments_page.html
parente182cf82839c7de137b05ba347fed7767d554020 (diff)
parent643a0e8659b7358bb2c06cc707e36b82b949c912 (diff)
downloadyt-local-2cfc6dec39ccdcc0c5fe2eea73f47b7040e51833.tar.lz
yt-local-2cfc6dec39ccdcc0c5fe2eea73f47b7040e51833.tar.xz
yt-local-2cfc6dec39ccdcc0c5fe2eea73f47b7040e51833.zip
Merge pull request #23 from zrose584/comments_js
add comments.js for comment replies
Diffstat (limited to 'youtube/templates/comments_page.html')
-rw-r--r--youtube/templates/comments_page.html30
1 files changed, 20 insertions, 10 deletions
diff --git a/youtube/templates/comments_page.html b/youtube/templates/comments_page.html
index 047404a..269ac83 100644
--- a/youtube/templates/comments_page.html
+++ b/youtube/templates/comments_page.html
@@ -1,13 +1,16 @@
{% set page_title = ('Replies' if comments_info['is_replies'] else 'Comments page ' + comments_info['page_number']) %}
-{% extends "base.html" %}
-{% import "comments.html" as comments %}
+{% import "comments.html" as comments with context %}
-{% block style %}
- .comments-area{
- margin: auto;
- width:640px;
- }
-{% endblock style %}
+{% if not slim %}
+ {% extends "base.html" %}
+
+ {% block style %}
+ .comments-area{
+ margin: auto;
+ width:640px;
+ }
+ {% endblock style %}
+{% endif %}
{% block main %}
@@ -24,7 +27,9 @@
</section>
{% endif %}
- {{ comments.comment_posting_box(comment_posting_box_info) }}
+ {% if not slim %}
+ {{ comments.comment_posting_box(comment_posting_box_info) }}
+ {% endif %}
{% if not comments_info['is_replies'] %}
<div class="comment-links">
@@ -36,13 +41,18 @@
<div class="comments">
{% for comment in comments_info['comments'] %}
- {{ comments.render_comment(comment, comments_info['include_avatars']) }}
+ {{ comments.render_comment(comment, comments_info['include_avatars'], slim) }}
{% endfor %}
</div>
{% if 'more_comments_url' is in comments_info %}
<a class="page-button more-comments" href="{{ comments_info['more_comments_url'] }}">More comments</a>
{% endif %}
</section>
+
+ {% if settings.use_comments_js %}
+ <script src="/youtube.com/static/js/common.js"></script>
+ <script src="/youtube.com/static/js/comments.js"></script>
+ {% endif %}
{% endblock main %}