Files
microblog/app/templates/index.html
2023-06-03 17:32:23 +02:00

253 B

{% extends 'base.html' %} {% block content %}

Hi, {{ current_user.username }}!

{% for post in posts %}

{{ post.author.username }} says: {{ post.body }}

{% endfor %} {% endblock %}