summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates
diff options
context:
space:
mode:
authorubq323 <ubq323>2021-05-21 23:30:15 +0000
committerubq323 <ubq323>2021-05-21 23:30:15 +0000
commit76120509b4ff409c6642b837be95ebc72c529d4b (patch)
tree8759e850feb4d848c2c59319d763d79b4fb8ce8c /apioforum/templates
parent61d73d6470096e3afa5dd278f8bcacc37e1bf877 (diff)
threads etc
Diffstat (limited to 'apioforum/templates')
-rw-r--r--apioforum/templates/view_forum.html.j223
1 files changed, 23 insertions, 0 deletions
diff --git a/apioforum/templates/view_forum.html.j2 b/apioforum/templates/view_forum.html.j2
new file mode 100644
index 0000000..fe14652
--- /dev/null
+++ b/apioforum/templates/view_forum.html.j2
@@ -0,0 +1,23 @@
+{% extends 'base.html.j2' %}
+{% block header %}<h1>{% block title %}apio forum george etc{%endblock%}</h1>{%endblock%}
+{%block content%}
+<p>the</p>
+<table>
+ <tr>
+ <th>id</th>
+ <th>title</th>
+ <th>creator</th>
+ <th>created</th>
+ <th>updated</th>
+ </tr>
+{%for thread in threads%}
+<tr>
+ <td>#{{thread.id}}</td>
+ <td><a href="#">{{thread.title}}</a></td>
+ <td>{{thread.creator}}</td>
+ <td>{{thread.created}}</td>
+ <td>{{thread.updated}}</td>
+</tr>
+{%endfor%}
+</table>
+{%endblock%}