{% 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 %}
Menu Title URL Parent Menu Groups States Actions
{{ menu_item.title }} {% url 'simplewiki:dynamic_menu' menu_path=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 %} {% if menu_item.states %} {{ menu_item.states|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/menus/_edit_menu.html' %}
{% elif user_action == 'delete' %} {% include 'simplewiki/editor/partials/menus/_delete_menu.html' %} {% elif user_action == 'create' %}
Create a new menu

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