{% set page_title = ('Replies' if comments_info['is_replies'] else 'Comments page ' + comments_info['page_number']) %} {% extends "base.html" %} {% import "comments.html" as comments %} {% block style %} main{ display:grid; grid-template-columns: 3fr 2fr; } #left{ background-color:#bcbcbc; display: grid; grid-column: 1; grid-row: 1; grid-template-columns: 1fr 640px; grid-template-rows: 0fr 0fr 0fr; } .comments-area{ grid-column:2; } .comment{ width:640px; } {% endblock style %} {% block main %}
{% if not comments_info['is_replies'] %} {% endif %} {{ comments.comment_posting_box(comment_posting_box_info) }} {% if not comments_info['is_replies'] %} {% endif %}
{% for comment in comments_info['comments'] %} {{ comments.render_comment(comment, comments_info['include_avatars']) }} {% endfor %}
{% if 'more_comments_url' is in comments_info %} More comments {% endif %}
{% endblock main %}