{% extends 'base/base.html' %} {% block content %} {% from 'board/_macro.html' import board_body %} {{ breadcrumb(active=_('Board')) }} {% for board in boards.items %} {% if not board.parents %}
{{ board.name }}
{% for child in board.children -%} {{ board_body(child) }} {% else %} {{ board_body(board) }} {%- endfor %}
{% endif %} {% endfor %} {% endblock %}