{% load menus %}
{% block title %}testapp{% endblock %}
{% menus as menus %}
{% for main, children in menus.main|group_by_tree %}
{{ main.title }}
{% if children %}
{% for child in children %}
{{ child.title }}
{% endfor %}
{% endif %} {% endfor %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% block content %}{% endblock %}