mg tut c2

This commit is contained in:
2024-08-01 02:07:49 -07:00
parent becc234263
commit fed4454a05
3 changed files with 43 additions and 1 deletions

View File

@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block content %}
<h1>Helloo, {{ user.username }}!</h1>
{% for post in posts %}
<div><p>{{ post.author.username }} says: <b>{{ post.body }}</b></p></div>
{% endfor %}
{% endblock %}