{% extends "news/base_news.html" %} {% load news %} {% block title %}{{ object.title }} - News - {{ block.super }} {% endblock %} {% block body_class %}{{ block.super }} post_detail{% endblock %} {% block body_id %}post_{{ object.id }}{% endblock %} {% block content %}

{{ object.title }}

{% post_detail object %} {% comment %} {% get_comment_list for object as comment_list %} {% if comment_list %}

Comments

{% for comment in comment_list %} {% if comment.is_public %}
{{ forloop.counter }} {% if comment.user_url %}{{ comment.user_name }}{% else %}{{ comment.user_name }}{% endif %} says...
{{ comment.comment|urlizetrunc:"60"|markdown:"safe" }}

Posted at {{ comment.submit_date|date:"P" }} on {{ comment.submit_date|date:"F j, Y" }}

{% endif %} {% endfor %}
{% endif %} {% if object.allow_comments %} {% render_comment_form for object %} {% else %}

Comments are closed.

Comments have been close for this post.

{% endif %} {% endcomment %} {% endblock %}