{% extends 'layout.html' %} {% block title %}Comment Corner{% endblock title %} {% block content %}

Leave a Comment

{{ comment.name(class="form-control") }}
{{ comment.comment(class="form-control") }}
{{ comment.submit() }}

Recent Comments

{{ filter.option }} {{ filter.submit() }}
{% for mycomment in recentcomments %}
{{ mycomment.date }}
{{ mycomment.name }}
{{ mycomment.comment }}
{% endfor %}
{% endblock content %}