posting_general.html
28 lines
| 605 B
| text/html
|
HtmlLexer
/ templates / posting_general.html
Ilyas
|
r9 | {% extends "base.html" %} | ||
{% block content %} | ||||
Ilyas
|
r14 | {% if threads %} | ||
{% for thread in threads %} | ||||
neko259
|
r16 | <span class="title">{{ thread.title }}</span><br /> | ||
<span class="text">{{ thread.text }}</span><br /> | ||||
neko259
|
r17 | <a class="link" href="/boards/post/{{ thread.id }}/">View | ||
thread</a> | ||||
neko259
|
r16 | <hr /> | ||
Ilyas
|
r14 | {% endfor %} | ||
{% else %} | ||||
No threads found. | ||||
neko259
|
r16 | <hr /> | ||
Ilyas
|
r14 | {% endif %} | ||
neko259
|
r16 | <div class="post-form"> | ||
<form action="/boards/" method="post">{% csrf_token %} | ||||
Ilyas
|
r14 | {{ form.as_p }} | ||
neko259
|
r16 | <input type="submit" value="Post!" /> | ||
Ilyas
|
r14 | </form> | ||
neko259
|
r16 | </div> | ||
Ilyas
|
r14 | |||
<HR /> | ||||
Ilyas
|
r9 | |||
{% endblock %} | ||||