summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/view_forum.html
blob: c7f88f1fb83209570b8e925d47a8101e74a980fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends 'base.html' %}
{% block header %}<h1>{% block title %}apio forum george etc{%endblock%}</h1>{%endblock%}
{%block content%}
<p>the</p>
<a href="{{url_for('forum.create_thread')}}">create thread</a>
<div class="threadlistings">
{%for thread in threads%}
<div class="threadlisting">
    <div class="threadlisting-part threadlisting-part-title"><a href="{{url_for('thread.view_thread',thread_id=thread.id)}}">{{thread.title}}</a></div>
    <div class="threadlisting-part threadlisting-part-id">#{{thread.id}}</div>
    <div class="threadlisting-part threadlisting-part-creator">{{thread.creator}}</div>
    <div class="threadlisting-part threadlisting-part-created">{{thread.created}}</div>
    <div class="threadlisting-part threadlisting-part-updated">{{thread.updated}}</div>
</div>
{%endfor%}
</div>
{%endblock%}