21 lines
454 B
HTML
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 %}
|
|
|