{% extends 'niji/base.html' %} {% load i18n %} {% load niji_tags %} {% load humanize %} {% load crispy_forms_tags %} {% block left %}

{{ topic.title }}

{{ topic.user.username }}
Posted {{ topic.pub_date | naturaltime }} in {{ topic.node.title }}, {% blocktrans with view_count=topic.view_count %}viewed {{ view_count }} times{% endblocktrans %}

{{ topic.content_rendered | safe}}

{% if topic.appendix_set %} {% endif %} {% if request.user == topic.user %} {% endif %} {% if request.user.is_superuser %} {% endif %}
{% if topic.reply_count %} {% blocktrans count reply_count=topic.reply_count %}{{ reply_count }} Reply{% plural %}{{ reply_count }} Replies{% endblocktrans %} {% else %} {% trans "No Replies" %} {% endif %}
{% trans "Leave a Reply"%}
{% if topic.closed %} {% else %} {% if request.user.is_authenticated %}
{% crispy form %}
{% else %} {% endif %} {% endif %}
{% endblock %} {% block widget_after %} {% include 'niji/widgets/node_info.html' %} {% endblock %} {% block footer_ext %} {% if request.user.is_superuser %} {% endif %} {% endblock %}