{% extends 'base_site.html' %} {% block content %}

Details about {{object.name}}

Update {{object.name}} {% if object.comments.all %}

Comments so far:

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

"{{ comment.text }}"
{{ comment.author }}

{% endfor %} {% endif %}

Add a comment about {{ object.name }}

{% csrf_token %}
You are:

{% endblock %}