{% extends 'simplewiki/base.html' %} {% load i18n %} {% load humanize %} {% load static %} {% load custom_filters %} {% block details %} {% if user_action == 'none' %}
{% endif %}
{% translate "Menu Administration" %}
{% if user_action == 'none' %}
{% for menu_item in menu_items %} {% endfor %}
Index Menu Title URL Parent Menu Groups Actions
{{ menu_item.index }} {{ menu_item.title }} {% url 'simplewiki:dynamic_menu' menu_name=menu_item.path %} {% if not menu_item.parent %} None {% else %} {{ menu_item.parent }} {% endif %} {% if menu_item.groups %} {{ menu_item.groups|add_group_space }} {% else %} None {% endif %}
{% elif user_action == 'edit' %}
Edit menu

{{ selectedMenu.title }}

Leave text-fields blank if you don't want any changes.
{% csrf_token %} {% include 'simplewiki/editor/partials/_edit_menu.html' %}
{% elif user_action == 'delete' %}
Are you sure you want to delete the following menu?

{{ selectedMenu.title }}
{% csrf_token %}
{% elif user_action == 'create' %}
Create a new menu

{% csrf_token %} {% include 'simplewiki/editor/partials/_create_menu.html' %}
{% endif %}
{% endblock %} {% block extra_javascript %} {% if user_action == 'edit' %} {# groupInput needs to be seperated, otherwise it won't find the input #} {% endif %} {% endblock %} {% block extra_script %} {% endblock %}