summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/view_thread.html
diff options
context:
space:
mode:
authorubq323 <ubq323>2021-06-02 22:46:17 +0000
committerubq323 <ubq323>2021-06-02 22:46:17 +0000
commit6a2a05cd0e6aab46ca610dda3c2f408c6b9bd9e2 (patch)
tree9018255d5807c40b558a42072d94c7f443645359 /apioforum/templates/view_thread.html
parent10fb40ceaefa4c014bbc67d4b908af2163344f0c (diff)
remove css so i can make better css
Diffstat (limited to 'apioforum/templates/view_thread.html')
-rw-r--r--apioforum/templates/view_thread.html9
1 files changed, 4 insertions, 5 deletions
diff --git a/apioforum/templates/view_thread.html b/apioforum/templates/view_thread.html
index 615aee0..d9efe86 100644
--- a/apioforum/templates/view_thread.html
+++ b/apioforum/templates/view_thread.html
@@ -7,11 +7,10 @@
<div class="posts">
{% for post in posts %}
<div class="post">
- <div class="heading">
- <div class="username">{{post.author}}</div>
- <div><span class="timestamp">{{post.created}}</span></div>
+ <div class="post_heading">
+ {{post.author}} @{{post.created}}
</div>
- <div class="md">
+ <div class="post_content">
{{rendered_posts[loop.index0] | safe}}
</div>
</div>
@@ -20,7 +19,7 @@
{% 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>
- <input class="submit-post" type="submit" value="yes">
+ <input type="submit" value="yes">
</form>
{% else %}
<p>not logged in</p>