summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2024-02-21 12:12:52 -0600
committerHombreLaser <sebastian-440@live.com>2024-02-21 12:12:52 -0600
commitd5d73505832bb39cf8e7fa5a49ff8e3d56690d71 (patch)
treefd562db4c6872ffc65b27e4be712c162015d621a /templates
parent11799b5bb5cac1fb53ea676337e679c94d3bc3e8 (diff)
Add reply form rendering
Diffstat (limited to 'templates')
-rw-r--r--templates/comments/index.jinja1
-rw-r--r--templates/replies/form.jinja3
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/comments/index.jinja b/templates/comments/index.jinja
index daaf5ea..bb310c5 100644
--- a/templates/comments/index.jinja
+++ b/templates/comments/index.jinja
@@ -19,6 +19,7 @@
<section class="replies-thread">
<div class="reply-tag">
<input class="replies-button" type="button" value="Replies" />
+ <input class="new-reply-button" type="button" value="New Reply" />
</div>
<div id="comment-replies-{{ comment.id }}" class="date">
</div>
diff --git a/templates/replies/form.jinja b/templates/replies/form.jinja
index e7ae3ab..f585d4e 100644
--- a/templates/replies/form.jinja
+++ b/templates/replies/form.jinja
@@ -1,4 +1,4 @@
-<form action="" class="reply-form" id="reply-form-1" method="post">
+<form action="" class="reply-form" method="post">
<div>
<label for="author"> Name: </label>
<input type="text" name="author" id="author" />
@@ -11,7 +11,6 @@
<textarea rows="4" cols="40" form="reply-form" name="content" id="content" />
</textarea>
</div>
- <input type="hidden" name="comment-id" value="{{comment_id}}"
<div>
<input type="submit" value="Submit" />
</div>