31 lines
545 B
HTML
31 lines
545 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block explorecurrent %}class="current"{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if form %}
|
|
<form action="" method="post">
|
|
{{ form.hidden_tag() }}
|
|
<p>
|
|
{{ form.post.label }}
|
|
{{ form.post(cols=32, rows=4) }}
|
|
{% for error in form.post.errors %}
|
|
<span style="color: red;">[{{ error }}]</span>
|
|
{% endfor %}
|
|
</p>
|
|
<p>{{ form.submit() }}</p>
|
|
</form>
|
|
{% endif %}
|
|
<table>
|
|
{% for post in posts %}
|
|
{% include '_post.html' %}
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% include '_postnav.html' %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|