Skip to content
Snippets Groups Projects
Unverified Commit 80384f9f authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Migrate core menus to django-menu-generator.

parent 94e6099f
No related branches found
No related tags found
1 merge request!17Migrate core from django-simple-menu to django-menu-generator. Closes #15.
<<<<<<< HEAD
MENUS = {
'NAV_MENU_CORE': [
{
......
{# -*- engine:django -*- #}
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
{% for item in items %}
{% if item.visible %}
<a class="dropdown-item {% if item.selected %} active{% endif %}{% if item.children %} dropdown-submenu{% endif %}" href="{{ item.url }}">{{ item.title }}
{% if item.children %}
{% with items=item.children template_name='bootstrap-navbar-submenu.html' %}
{% include template_name %}
{% endwith %}
{% endif %}
</a>
{% endif %}
<a class="dropdown-item {% if item.selected %} active{% endif %}{% if item.submenu %} dropdown-submenu{% endif %}" href="{{ item.url }}">{{ item.name }}
{% if item.submenu %}
{% with items=item.submenu template_name='bootstrap4-navbar-submenu.html' %}
{% include template_name %}
{% endwith %}
{% endif %}
</a>
{% endfor %}
</div>
{# -*- engine:django -*- #}
{% for item in menu %}
{% if item.visible %}
{% if item.separator %}
<li class="divider-vertical"></li>
{% endif %}
<li class="nav-item {% if item.selected %} active{% endif %}{% if item.children %} dropdown{% endif %}" id="top-menu-{{ item.slug }}">
<a href="{{ item.url }}" {% if not item.children %}class=nav-link {% endif%} {% if item.children %} class="nav-link dropdown-toggle" data-hover="dropdown" data-toggle="dropdown"{% endif %}>
{% if item.icon %}
<i class="icon-{{ item.icon }} icon-white"></i>&nbsp;
{% endif %}
<span>{{ item.title }}</span>
{% if item.children %}
&nbsp;<b class="caret"></b>
{% endif %}
</a>
{% if item.children %}
{% include 'bootstrap4-navbar-submenu.html' with items=item.children %}
{% endif %}
</li>
{% endif %}
{% endfor %}
{% load menu_generator %}
{% get_menu "NAV_MENU_CORE" as core_menu %}
<ul class="nav navbar-nav ml-auto">
{% for item in core_menu %}
{% if not item.submenu %}
<li class="{% if item.selected %} active {% endif %} nav-item">
<a href="{{ item.url }}" class="nav-link"> <i class="{{ item.icon_class }}"></i> {{ item.name }}</a>
</li>
{% endif %}
{% if item.submenu %}
<a class="nav-link dropdown-toggle" data-toggle="dropdown" id="navbarDropdown" aria-expanded="false" role="button" aria-haspopup="true" href="#">
{{ item.name }}
</a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
{% for menu in item.submenu %}
<a class="dropdown-item" href="{{ menu.url }}">
{{ menu.name }}
</a>
{% endfor %}
</div>
{% endif %}
{% endfor %}
......@@ -25,28 +25,12 @@
<a class="navbar-brand" href="{% url "index" %}">
<span class="glyphicon glyphicon-briefcase"></span> BiscuIT School Information System
</a>
</div>
<div class="collapse navbar-collapse" id="navbar-main">
{% get_menu "NAV_MENU_CORE" as core_menu %}
<ul class="nav navbar-nav ml-auto">
{% for item in core_menu %}
<li class="{% if item.selected %} active {% endif %} nav-item">
<a href="{{ item.url }}" class="nav-link"> <i class="{{ item.icon_class }}"></i> {{ item.name }}</a>
</li>
{% if item.submenu %}
<div class="dropdown-menu dropdown-menu-righy" aria-labelledby="navbarDropdown">>
{% for menu in item.submenu %}
<a class="dropdown-item" href="{{ menu.url }}">
{{ menu.name }}
</a>
{% endfor %}
</div>
{% endif %}
{% endfor %}
{% with menu=NAV_MENU_CORE %}{% include "bootstrap4-navbar.html" %}{% endwith %}
</ul>
</div>
</div>
</nav>
<div class="container">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment