diff options
author | luxagraf <sng@luxagraf> | 2021-01-15 17:24:48 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf> | 2021-01-15 17:24:48 -0500 |
commit | 52baba0dbd18ab84ff2aef3f38dc4a7b4b0dae4a (patch) | |
tree | f943a9e73286f30e008740137421abcf42fe9335 /app/posts | |
parent | 776712e1288138f546d105ab621523a2c632638a (diff) |
fixed a bug in comment form styles
Diffstat (limited to 'app/posts')
-rw-r--r-- | app/posts/templates/posts/jrnl_detail.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/posts/templates/posts/jrnl_detail.html b/app/posts/templates/posts/jrnl_detail.html index 09e6b5f..d4bdb5f 100644 --- a/app/posts/templates/posts/jrnl_detail.html +++ b/app/posts/templates/posts/jrnl_detail.html @@ -149,10 +149,10 @@ {% get_comment_count for object as comment_count %} {%if comment_count > 0 %} <div class="comment-wrapper"> -<p class="comments--header">{{comment_count}} Comment{{ comment_count|pluralize }}</p> +<p class="comments-header">{{comment_count}} Comment{{ comment_count|pluralize }}</p> {% render_comment_list for object %} {%endif%} -<div class="comment--form--wrapper {%if comment_count > 0%}comment-form-border{%endif%}"> +<div class="comment-form-wrapper {%if comment_count > 0%}comment-form-border{%endif%}"> {% render_comment_form for object %} </div> {% else %} |