{% extends 'simplewiki/base.html' %} {% load i18n %} {% load humanize %} {% load static %} {% load custom_filters %} {% block details %}
{% translate "Menu Layout Administration" %}
    {% for menu_item in menu_items %} {% if not menu_item.parent %}
  1. {{ menu_item.title }}
    {% if menu_item.children %}
      {% with submenu_paths=menu_item.path|get_submenu_paths %} {% for sub_menu_item in menu_item|children_order_by %}
    1. {{ sub_menu_item.title }}
    2. {% endfor %} {% endwith %}
    {% endif %}
  2. {% endif %} {% endfor %}
{% endblock %} {% block extra_javascript %} {% endblock %} {% block extra_css %} {% endblock %} {% block extra_script %} {% endblock %}