summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/view_forum.html.j2
blob: fe146529bbfbbecc66a5cf9f9e1122be68c97b7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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%}