{% extends "base.html" %} {% load i18n %} {% block title %}{{ post.title }}{% endblock %} {% block content %}

{{ post.title }}

{{ post.content }}

{% trans 'Posted on' %} {{ post.pub_date|date:"Y M d" }} {% trans 'by' %} {{ post.author }}

{% if post.enable_comments %} {% load comments %}

{% trans 'Comments' %}

{% render_comment_list for post %} {% render_comment_form for post %} {% endif %} {% endblock %}