{% extends "blog/base.html" %} {% block title %}{{ post.title }}{% endblock %} {% block body %}
Written By {{ post.user.username }} on {{ post.publish_date }}
Tags: {% for tag in tags %} {{tag.title}} {% endfor %}
There are no comments for this post.
{% else %} {% for comment in comments %}By: {{ comment.name }} on {{ comment.date }}
{{ comment.text }}