{% extends 'lbforum/base.html' %} {% load i18n %} {% load lbforum_filters %} {% load lbforum_tags %} {% block title %} {{ topic.subject }} - {{ LBFORUM_TITLE }} {% endblock %} {% block content %}
{% include 'lbforum/inc_header.html' %} {% include 'lbforum/inc_announce.html' %}

{% include 'lbforum/inc_topic_brd_crumbs.html' %}
{% load pagination_tags %} {% autopaginate posts TOPIC_PAGE_SIZE %} {% paginate %}

{% if not topic.closed %} {% if user.is_authenticated %} {% trans "Post reply" %} {% else %} {% trans "You must" %} {% trans "Login" %} {% trans "or" %} {% trans "register" %} {% trans "to post a reply" %} {% endif %} {% endif %}

{% for post in posts %} {% include 'lbforum/inc_post_detail.html' %} {% endfor %}

{% include 'lbforum/plugins/inc_topic_footer.html' %}

{% paginate %}

{% if not topic.closed %} {% if user.is_authenticated %} {% trans "Post reply" %} {% else %} {% trans "You must" %} {% trans "Login" %} {% trans "or" %} {% trans "register" %} {% trans "to post a reply" %} {% endif %} {% endif %}

{% include 'lbforum/inc_topic_brd_crumbs.html' %}
{% if not topic.closed %} {% if user.is_authenticated %}

{% trans "Quick reply to this topic" %}

{% trans "You may use" %}: BBCode Images Smilies

{% trans "Compose your post" %}
{% endif %} {% endif %}

{% include 'lbforum/inc_copyright.html' %}
{% endblock %}