site/backend/app/templates/index.html

31 lines
577 B
HTML
Raw Normal View History

2024-08-01 09:07:49 +00:00
{% extends "base.html" %}
2024-08-05 16:09:51 +00:00
{% block indexcurrent %}class="current"{% endblock %}
2024-08-01 09:07:49 +00:00
{% block content %}
2024-09-02 07:22:23 +00:00
{% 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>
2024-08-08 15:14:44 +00:00
2024-09-02 07:22:23 +00:00
{% include '_postnav.html' %}
2024-08-04 20:14:58 +00:00
2024-08-01 09:07:49 +00:00
{% endblock %}