{% extends 'base.html' %} {% block main_content %} Enter Comment {% if user.is_authenticated %}

You are currently logged in as {{ user.username }}

{{ form }}
Logout {% else %} Login {% endif %} {% for comment in comments %}

{{ comment.comment }}

{% endfor %} {% endblock %}