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

{{ object.title }}

{% include "news/inlines/post_detail.html" %} {% get_threaded_comment_form as form %} {% include "threadedcomments/inlines/reply_to.js" %}

Comments on This Post:

{% get_threaded_comment_tree for object as tree %} {% for comment in tree %}
{% if comment.user.wlprofile.avatar %} {% endif %}

{{ comment.user|user_link }} said:

{% auto_transform_markup comment %} {% if user.is_authenticated %}

Reply

{% endif %}
{% endfor %} {% if user.is_authenticated %}

Reply to Original:

{{ form.comment.errors }} {{ form.comment }}
{% else %}

Log in to post comments

{% endif %} {% endblock %}