{% extends "base.html" %} {% block title %}{{ post.title }} - FastDjango Blog{% endblock %} {% block content %}

{{ post.title }}

{% if post.author %} By {{ post.author.username }} {% endif %} {{ post.created_at|datetime('%B %d, %Y') }} {{ post.views }} views
{{ post.content|safe }}

Comments

{% for comment in comments %}
{{ comment.name }} {{ comment.created_at|datetime('%b %d, %Y') }}

{{ comment.content }}

{% else %}

No comments yet. Be the first!

{% endfor %}

Leave a Comment

Comment submitted! Awaiting approval.

{% endblock %}