## -*- coding: utf-8; -*-
<%inherit file="/configure.mako" />
<%def name="extra_styles()">
${parent.extra_styles()}
%def>
<%def name="form_content()">
## nb. must be root to configure menus! otherwise some of the
## currently-defined menus may not appear on the page, so saving
## would inadvertently remove them!
% if request.is_root:
${h.hidden('menus', **{':value': 'JSON.stringify(allMenuData)'})}
Top-Level Menus
Click on a menu to edit. Drag things around to rearrange.
% else:
## not root!
You must become root to configure menus!
% endif
%def>
## TODO: should probably make some global "editable" flag that the
## base configure template has knowledge of, and just set that to
## false for this view
<%def name="purge_button()">
% if request.is_root:
${parent.purge_button()}
% endif
%def>
<%def name="modify_vue_vars()">
${parent.modify_vue_vars()}
%def>