{%extends 'base.html'%} {%load static%} {%block extracss%} {%endblock extracss%} {%block content%}

{{object.title}}

{{object.content}}

{{object.author}}

{%for comments in object.comment_set.all%}

{{comments.author}}

{{comments.content}}

{{comments.post}}

{%endfor%}
{%endblock content%}