aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/templates/post_comment.html
blob: ba6a22cb1d05390f0a1818c9eb383d1b03176b93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% set page_title = 'Post reply' if replying else 'Post comment' %}
{% extends "base.html" %}
{% import "comments.html" as comments %}

{% block style %}
    .comment-form{
        width: 640px;
        margin: auto;
        justify-content:start;
    }
        textarea{
            width: 460px;
            height: 85px;
        }
{% endblock style %}

{% block main %}
    {{ comments.comment_posting_box(comment_posting_box_info) }}
{% endblock %}