summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/view_thread.html
diff options
context:
space:
mode:
authorubq323 <ubq323>2021-06-09 22:07:43 +0000
committerubq323 <ubq323>2021-06-09 22:07:43 +0000
commitb85a4e185a9ca96b5b6f0f492326e556e0d63040 (patch)
treeda89ad313863e84c42fffb8de6185764ea1c2c5a /apioforum/templates/view_thread.html
parentd4211837747e0fda14cb278c10aad9f7e05e076c (diff)
editing and deleting and things
Diffstat (limited to 'apioforum/templates/view_thread.html')
-rw-r--r--apioforum/templates/view_thread.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/apioforum/templates/view_thread.html b/apioforum/templates/view_thread.html
index acd062f..f38cf34 100644
--- a/apioforum/templates/view_thread.html
+++ b/apioforum/templates/view_thread.html
@@ -7,14 +7,14 @@
{%block content%}
<div class="posts">
{% for post in posts %}
- {% call disp_post(post, thread_id, True) %}
+ {% call disp_post(post, True) %}
{{ rendered_posts[loop.index0] | safe}}
{% endcall %}
{% endfor %}
</div>
{% if g.user %}
<form class="new-post" action="{{url_for('thread.create_post',thread_id=thread_id)}}" method="POST">
- <textarea placeholder="your post here..." name="content"></textarea>
+ <textarea class="new-post-box" placeholder="your post here..." name="content"></textarea>
<input type="submit" value="yes">
</form>
{% else %}