mirror of
https://github.com/rmontanana/microblog.git
synced 2025-08-17 08:15:52 +00:00
22 lines
549 B
HTML
22 lines
549 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<h1>Hi, {{ current_user.username }}!</h1>
|
|
{% if form %}
|
|
<form action="" method="post">
|
|
{{ form.hidden_tag() }}
|
|
<p>
|
|
{{ form.post.label }}<br />
|
|
{{ form.post(cols = 32, rows = 4) }}<br />
|
|
{% for error in form.post.errors %}
|
|
<span style="color: red;">[{{ error }}]</span>
|
|
{% endfor %}
|
|
</p>
|
|
<p>{{ form.submit() }}</p>
|
|
</form>
|
|
{% endif %}
|
|
{% for post in posts %}
|
|
{% include "_post.html" %}
|
|
{% endfor %}
|
|
{% endblock %}s
|