{% extends "lbforum/base_site.html" %} {% load i18n %} {% load lbforum_filters %} {% load lbforum_tags %} {% load el_pagination_tags %} {% load staticfiles %} {% load lbutils %} {% block title %} {{ topic.subject }} - {% get_setting "LBFORUM_TITLE" %} {% endblock %} {% block content_right_bar %} {% include 'lbforum/widgets/cur_user_profile.html' %} {% endblock %} {% block extra_header %} {{ block.super }} {% endblock %} {% block content_content %} {% paginate posts %} {% get_pages %}
{% with post=topic.post %}
{% trans "Home" %} » {{ topic.forum.name }}

{{topic}}

By {{post.posted_by.username}} at {{ topic.last_post.created_on|lbtimesince }}, {{topic.num_views}} hits {% if can_admin %} | {% if topic.level >= 60 %} {% trans "undistillate" %} {% else %} {% trans "distillate" %} {% endif %} {% if topic.sticky %} {% trans "unsticky" %} {% else %} {% trans "sticky" %} {% endif %} {% if topic.closed %} {% trans "unclose" %} {% else %} {% trans "close" %} {% endif %} {% if topic.hidden %} {% trans "unhide" %} {% else %} {% trans "hide" %} {% endif %} {% trans "delete" %} {% endif %}
{% include 'lbforum/inc_post_content.html' %}
{% if user == post.posted_by or can_admin %} {% trans "edit" %} | {% endif %} {% trans "quote" %} {% if topic|topic_can_post:user %} {% trans "Post reply" %} {% endif %}
 
{% endwith %}
{% if not posts %}
{% trans "No Reply" %}
{% else %}
{% trans "Posts" %} [ {% page_range_info pages %} ] | {% trans "Last post" %} {{ topic.last_post.created_on|lbtimesince }}
{% for post in posts %} {% include 'lbforum/inc_post_detail.html' %} {% endfor %}
{% show_pages %}
{% endif %} {% if topic|topic_can_post:user %}
{% trans "Quick reply to this topic" %}
{% csrf_token %}
{% trans "You may use" %}: BBCode
{% endif %} {% endblock %} {% block footer_js %} {% endblock %}