{% extends "board_view.html" %} {% block title %}/{{ thread.board.name }}/ - {{ full_name }}{% endblock %} {% import "widget/post.html" as post_widget %} {% import "widget/post_form.html" as post_form_widget %} {% import "widget/post_manage.html" as post_manage_widget %} {% block post_form_top %}

Viewing thread

{% endblock %} {% block board_controls_top %}
[Back] [Bottom]

{% endblock %} {% block board_view_content %} {{ post_manage_widget.render_begin() }}
{% for post_item in thread.posts %} {{ post_widget.render(post_item, checkbox=True, with_divider=not loop.last, is_sticky=loop.first and thread.sticky, is_locked=loop.first and thread.locked) }} {% endfor %}
{% endblock %} {% block board_controls_bottom %}
[Back] [Top]
{{ post_manage_widget.render_content(thread, show_moderator_buttons) }}
{{ post_manage_widget.render_end() }}
{% endblock %} {% block post_form_bottom %} {% if not thread.locked %} {{ post_form_widget.render(thread.board, thread, file_field=file_posting_enabled, moderator_fields=show_moderator_buttons) }} {% else %} Thread locked, you may not reply at this time.
{% endif %} {% endblock %} {% block javascripts %} {{ super() }} {% endblock %}