Answer the question
In order to leave comments, you need to log in
Why is the text not showing?
html:
<div class="chats">
<div class="messages">
{% for chat in chats %}
<div class="chat_name"> {{chat.first_name}} {{chat.last_name}} </div>
{% endfor %}
</div>
</div>
print(chats)
return render_template("index.html", chats = chats)
Answer the question
In order to leave comments, you need to log in
change chat.first_name to chat.0.first_name. by analogy, change the rest in the same way
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question