summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/view_thread.html
blob: 34faeea7075af9fb92fca35815d676f4d176a7d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends 'base.html' %}
{% block header %}
<h1>{%block title %}thread{% endblock %}</h1>
{% endblock %}

{%block content%}
<h2>{{thread.title}}</h2>
<p>by {{thread.creator}}</p>
<dl>
{% for post in posts %}
<dt>{{post.author}}</dt>
<dd>{{post.content}}</dd>
{% else %}
<dt>there weren't</dt>
<dd>any posts</dd>
{% endfor %}
</dl>
{% endblock %}