summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/view_thread.html
diff options
context:
space:
mode:
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 %}