thread.html
27 lines
| 538 B
| text/html
|
HtmlLexer
/ templates / thread.html
neko259
|
r20 | {% extends "base.html" %} | ||
{% block content %} | ||||
{% if posts %} | ||||
{% for post in posts %} | ||||
<span class="title">{{ post.title }}</span> | ||||
<span class="post_id">(#{{ post.id }})</span><br /> | ||||
<span class="text">{{ post.text }}</span><br /> | ||||
<hr /> | ||||
{% endfor %} | ||||
{% else %} | ||||
No threads found. | ||||
<hr /> | ||||
{% endif %} | ||||
<div class="post-form"> | ||||
<form method="post">{% csrf_token %} | ||||
{{ form.as_p }} | ||||
<input type="submit" value="Post!" /> | ||||
</form> | ||||
</div> | ||||
<HR /> | ||||
{% endblock %} | ||||