{% extends 'news_base.html' %} {% load markup %} {% load mptt_tags %} {% load minecraft %} {% block title %}News - {{item.title}}{% endblock %} {% block content %}

{{item.title}}

By
{% avatar item.author %}
On {{item.created}}
{{item.body|markdown}}

Comments

{% recursetree item.comments %}
#{{node.id}}
{%avatar node.author%} {{node.author}}
{{node.body|markdown:"safe"}}
{{ commentForm.as_p }} {% csrf_token %}
{{children}}
{% endrecursetree %}

Add a comment

{{ commentForm.as_p }} {% csrf_token %}
{% endblock %}