mirror of
https://github.com/rmontanana/microblog.git
synced 2025-08-16 15:55:51 +00:00
709 B
709 B
{% extends 'base.html' %}
{% block content %}
Hi, {{ current_user.username }}!
{% if form %} {{ form.hidden_tag() }}
{{ form.post.label }}
{{ form.post(cols = 32, rows = 4) }}
{% for error in form.post.errors %}
[{{ error }}]
{% endfor %}
{{ form.submit() }}
{% endif %} {% for post in posts %} {% include '_post.html' %} {% endfor %} {% if prev_url %} Newer posts {% endif %} {% if next_url %} Older posts {% endif %} {% endblock %}s