summary refs log tree commit diff
path: root/templates/view_thread.html
diff options
context:
space:
mode:
authorMatt Arnold2025-04-15 21:55:22 -0400
committerMatt Arnold2025-04-15 21:55:22 -0400
commit1f6e041e49754ae41db005f98df2685031ccaff0 (patch)
treef74fa30cde99976942fc5719e7c350451a09da0b /templates/view_thread.html
parente8880e73a23571acf47845b1e38292239c5d71b2 (diff)
threaded view basically works now
Diffstat (limited to 'templates/view_thread.html')
-rw-r--r--templates/view_thread.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/view_thread.html b/templates/view_thread.html
new file mode 100644
index 0000000..877feb8
--- /dev/null
+++ b/templates/view_thread.html
@@ -0,0 +1,28 @@
+{% extends 'base.html' %}
+
+{% block content %}
+
+<h2>{{ thread.title }}</h2>
+<p>{{ thread.created_at.strftime('%Y-%m-%d %H:%M') }}</p>
+{% for post in pdx %}
+<div class="container">
+    <div class="userbox">
+        <p> Poster: <a href="{{url_for('details', light=post.authour.name)}}"> {{post.authour.name}} </a>
+        </p>
+        <p> Date: {{post.created_at.strftime('%Y-%m-%d %H:%M')}} </p>
+    </div>
+    <div class="post-content">
+        <p>
+        <h4> {{post.title}} </h4>
+        </p>
+        {{ post.content|markdown|safe }}
+    </div>
+    <br> <br>
+</div>
+{% endfor %}
+<div class="post-actions">
+    <a href="{{ url_for('create', reply=thread.id)}}"> Reply</a> ~
+    <a href="{{ url_for('index') }}">Back to posts</a>
+</div>
+
+{% endblock %}
\ No newline at end of file