Files
microblog/app/templates/index.html
2023-06-03 16:59:29 +02:00

222 B

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

Hi, {{ user.username }}!

{% for post in posts %}

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

{% endfor %} {% endblock %}