summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/view_forum.html
blob: 2140c7a0a862ec9eae31b07702d8f3769a931f1d (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' %}
{% 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="{{url_for('thread.view_thread',thread_id=thread.id)}}">{{thread.title}}</a></td>
    <td>{{thread.creator}}</td>
    <td>{{thread.created}}</td>
    <td>{{thread.updated}}</td>
</tr>
{%endfor%}
</table>
{%endblock%}