{% extends 'base.html' %} {% load datetime_filter %} {% load humanize %} {% block title %} {{ post.title }} {% endblock %} {% block body %}

{{post.title}}

{{ post.author.username }} submitted {{ post.score }} point{{ post.score|pluralize}} {{ post.content_html | safe }}

Comments

{% for comment in comments %} {% include "comment.html" %} {% endfor %}
{% endblock %}