{% extends 'cafe_post_base.html' %} {% block content %}
{% for post in posts %}

{{ post.title }}

{{ post.content }}

Posted by {{ post.author.username }} on {{ post.created_at }} Comments ({{ post.comments.count }})
{% for comment in post.comments.all %}

{{ comment.content }}

Comment by {{ comment.author.username }} on {{ comment.created_at }}
{% endfor %}
{% csrf_token %}
{% endfor %}
{% endblock %}