{% extends 'base/base.html' %} {% block content %} {% set board = topic.board %} {% if board.parent_id %} {{ breadcrumb(hrefs={board.parent.name:url_for('forums.board',boardId=board.parent_id), board.name:url_for('forums.board',boardId=board.id)},active=topic.title) }} {% else %} {{ breadcrumb(hrefs={board.name:url_for('forums.board',boardId=board.id)},active=topic.title) }} {% endif %}
{% include "topic/item/heading.html" %} {% include "topic/item/body.html" %}
{% include "topic/reply/itemlist.html" %}
{% include "topic/panel.html" %} {% set ask_url = url_for('topic.ask',boardId=topic.board_id) %} {{ panel_base.board() }}
{% endblock %}