summaryrefslogtreecommitdiff
path: root/comments/templates/comments/new_reply.html
diff options
context:
space:
mode:
Diffstat (limited to 'comments/templates/comments/new_reply.html')
-rw-r--r--comments/templates/comments/new_reply.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/comments/templates/comments/new_reply.html b/comments/templates/comments/new_reply.html
index 71532c8..eac5a06 100644
--- a/comments/templates/comments/new_reply.html
+++ b/comments/templates/comments/new_reply.html
@@ -1,10 +1,27 @@
{% extends 'comments/comment_base.html' %}
{% block content %}
<div id="new-reply-form">
+ <u> Comment: </u> <br><br>
+ <div class="well" style="width: 78%">
+ <blockquote>
+ {{ comment.body }}
+ </blockquote>
+ <div class="replies">
+ {% if comment.reply_set.all %}
+ <h6><u>Recent replies</u></h6>
+ {% endif %}
+ {% for reply in comment.reply_set.all %}
+ <div class="reply">
+ <p>{{ reply.body }}</p>
+ </div>
+ {% endfor %}
+ </div>
+ </div>
<h5><u>New reply form</u></h5>
<form action="/comments/new-reply/" method="POST" accept-charset="utf-8"> {% csrf_token %}
{{ form.errors }}
{{ form.comment_id }}
+ <label>Description:</label>
{{ form.body }} <br>
<input class="btn btn-primary" type="submit" value="Submit">
<a class="btn btn-default" href="/comments/get/?book={{ comment.book }}&chapter={{ comment.chapter }}&example={{ comment.example }}&page={{ comment.page }}">Cancel</a>