{% extends 'base/base.html' %} {% block content %} {% if board.parent_id %} {{ breadcrumb(hrefs={board.parent.name:url_for('forums.board',boardId=board.parent_id)},active=board.name) }} {% else %} {{ breadcrumb(active=board.name) }} {% endif %} {% from 'board/_macro.html' import board_body %}
{% for child in board.children -%} {{ board_body(child) }} {% else %} {{ board_body(board) }} {%- endfor %}
{% include "topic/_topic.html" %} {{ p_footer(topics,'forums.board',dict(boardId=board.id))}}
{{ panel_base.board() }}
{% endblock %}