{% extends 'pybb/base.html' %} {% load pybb_tags i18n %} {% block title %}{{ topic }}{% endblock %} {% block more_head %} {{ block.super }} {% include "pybb/markitup.html" %} {% endblock more_head %} {% block breadcrumb %} {% with object=topic %} {% include "pybb/breadcrumb.html" %} {% endwith %} {% endblock %} {% block content %}

{{ topic.name }}

{% with _('Posts') as label %} {% include "pybb/pagination.html" %} {% endwith %}
{% if first_post %}{% ifnotequal first_post post_list.0 %} {% with first_post as post %}
  • {% include "pybb/post_template.html" %}
  • {% endwith %} {% endifnotequal %}{% endif %} {% for post in post_list %} {% cycle 'odd' 'even' as rowcolors silent %} {% include "pybb/post_template.html" %} {% endfor %}
     
    {% with _('Posts') as label %} {% include "pybb/pagination.html" %} {% endwith %} {% if user.is_authenticated %}
    {% if user.is_moderator %} {% if topic.sticky %} {% trans "Unstick topic" %} / {% else %} {% trans "Stick topic" %} / {% endif %} {% if topic.closed %} {% trans "Open topic" %} / {% else %} {% trans "Close topic" %} / {% endif %} {% if perms.pybb.change_topic and user.is_staff %} {% trans 'Admin' %} / {% endif %} {% comment %} {% trans 'Merge topics' %} / {% endcomment %} {% endif %} {% if user.is_subscribed %} {% trans "Unsubscribe" %} {% else %} {% trans "Subscribe" %} {% endif %}
    {% endif %} {% if user.is_authenticated or PYBB_ENABLE_ANONYMOUS_POST %} {% if not user.get_profile.is_banned %} {% if not topic.closed %} {% include "pybb/post_form.html" %} {% endif %} {% endif %} {% else %} {% trans "Register" %} {% trans "or" %} {% trans "login" %} {% trans "to create to post a reply" %}. {% endif %} {% if user.is_staff %}
    {% trans "Subscribers" %}: {% for subscriber in topic.subscribers.all %} {{ subscriber.username }}, {% endfor %}
    {% endif %} {% endblock %}