{% extends "pybb/base.html" %} {% load i18n pybb_tags guardian_tags %} {% block extra_script %} {{ block.super }} {% include "pybb/_sceditor.html" %} {% endblock %} {% block breadcrumb %} {% if forum %} {% with object=forum extra_crumb="New topic" %} {% include "pybb/breadcrumb.html" %} {% endwith %} {% else %} {% with object=topic extra_crumb="New reply" %} {% include "pybb/breadcrumb.html" %} {% endwith %} {% endif %} {% endblock %} {% block content %} {% include "pybb/post/form.html" %} {% if topic %} {% get_obj_perms request.user for topic.forum as "forum_perms" %}
{% if topic.poll_type != 0 %} {% include "pybb/poll/detail.html" %} {% endif %}
{% 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" with page=page_obj %} {% endfor %}
     
    {% if post_count > post_page_size %}
    {% blocktrans with page_size=post_page_size %}This discussion has more {{ page_size }} answers{% endblocktrans %} {% trans "Click here to see the full discussion" %}
    {% endif %} {% endif %} {% endblock %}