{% extends "lbforum/base_site.html" %} {% load i18n %} {% load lbforum_filters %} {% load lbforum_tags %} {% load avatar_tags %} {% load pagination_tags %} {% block title %} {{ topic.subject }} - {{ LBFORUM_TITLE }} {% endblock %} {% block content_right_bar %} {% include 'lbforum/widgets/cur_user_profile.html' %} {% endblock %} {% block content_content %} {% autopaginate posts TOPIC_PAGE_SIZE %}
{% with post=topic.post %}
{{ LBFORUM_TITLE }} » {{ topic.forum.name }}

{{topic}}

By {{post.posted_by.username}} at {{ topic.get_last_post.update|lbtimesince }}, {{topic.num_views}} hits
{% include 'lbforum/inc_post_content.html' %}
{% if user == post.posted_by or user.is_staff %} {% trans "edit" %} | {% endif %} {% trans "quote" %} {% if user.is_authenticated %} {% trans "Post reply" %} {% endif %}
 
{% endwith %}
{% if not posts %}
{% trans "No Reply" %}
{% else %}
{% trans "Posts" %} [ {% page_range_info page_obj %} ] | {% trans "Last post" %} {{ topic.get_last_post.update|lbtimesince }}
{% for post in posts %} {% include 'lbforum/inc_post_detail.html' %} {% endfor %}
{% paginate %}
{% endif %}
{% trans "Quick reply to this topic" %}
{% csrf_token %}
{% trans "You may use" %}: BBCode Images
{% endblock %} {% block footer_js %} {% endblock %}