{% extends "lbforum/base_site.html" %} {% load i18n %} {% load lbforum_filters %} {% load lbforum_tags %} {% load djangohelper_tags %} {% block title %} {{ forum }} - {{ topic_type }} - {{ topic_type2 }} - {{ LBFORUM_TITLE }} {% endblock %} {% block content_right_bar %} {% include 'lbforum/widgets/cur_user_profile.html' %} {% if forum.description %}
{{forum.description}}
{% endif %} {% if forum.topictype_set.all.count %}
{% trans "Topic Type" %}
{% trans "All" %} {% for tp in forum.topictype_set.all %} {{ tp }} {% endfor %}
{% endif %} {% endblock %} {% block content_content %} {% load pagination_tags %} {% autopaginate topics FORUM_PAGE_SIZE %}
{% trans "Topics" %} [ {% page_range_info page_obj %} ]
{{ LBFORUM_TITLE }} » {{ forum }} {% if user.is_authenticated %}
{% endif %}
{% include 'lbforum/inc_topic_list.html' %}
{% paginate %}
{% endblock %}