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.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/comments/templates/comments/new_reply.html b/comments/templates/comments/new_reply.html
index eac5a06..56c97f5 100644
--- a/comments/templates/comments/new_reply.html
+++ b/comments/templates/comments/new_reply.html
@@ -5,6 +5,7 @@
<div class="well" style="width: 78%">
<blockquote>
{{ comment.body }}
+ <small>{{ comment.email }}</small>
</blockquote>
<div class="replies">
{% if comment.reply_set.all %}
@@ -13,6 +14,7 @@
{% for reply in comment.reply_set.all %}
<div class="reply">
<p>{{ reply.body }}</p>
+ <small> - {{ reply.email }}</small>
</div>
{% endfor %}
</div>
@@ -23,6 +25,8 @@
{{ form.comment_id }}
<label>Description:</label>
{{ form.body }} <br>
+ <label>Email:</label>
+ {{ form.email }} <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>
</form>