yt-local/youtube/templates/post_comment.html
2019-08-24 11:35:58 -07:00

21 lines
454 B
HTML

{% 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 %}