Enhance sidebar menu
This commit is contained in:
parent
02bf93efc8
commit
73141c549d
|
@ -7,6 +7,11 @@
|
||||||
--info: #99f;
|
--info: #99f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#logo {
|
||||||
|
width: 100px;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
border: 1px solid gray;
|
border: 1px solid gray;
|
||||||
|
@ -74,11 +79,6 @@ a, a:visited {
|
||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
#logo {
|
|
||||||
width: 100px;
|
|
||||||
height: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
#content {
|
#content {
|
||||||
flex: 4;
|
flex: 4;
|
||||||
}
|
}
|
||||||
|
@ -97,6 +97,18 @@ a, a:visited {
|
||||||
background-color: #fafafa;
|
background-color: #fafafa;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#sidebar ul ul {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidebar ul li.dropdown {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidebar ul li.dropdown.open > ul {
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
|
||||||
ul.actions {
|
ul.actions {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
var GAS = {
|
var GAS = {
|
||||||
|
config: {
|
||||||
|
'menuItemSelector': '.dropdown',
|
||||||
|
'openedMenuItemClass': 'open',
|
||||||
|
},
|
||||||
init: function() {
|
init: function() {
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$('.select2').select2({
|
$('.select2').select2({
|
||||||
|
@ -10,6 +14,10 @@ var GAS = {
|
||||||
let $message = $(this).parents('.message');
|
let $message = $(this).parents('.message');
|
||||||
$message.remove();
|
$message.remove();
|
||||||
});
|
});
|
||||||
|
GAS.toggle(
|
||||||
|
GAS.config.menuItemSelector,
|
||||||
|
GAS.config.openedMenuItemClass,
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
var csrftoken = GAS.getCookie('csrftoken');
|
var csrftoken = GAS.getCookie('csrftoken');
|
||||||
|
@ -67,6 +75,19 @@ var GAS = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return cookieValue;
|
return cookieValue;
|
||||||
|
},
|
||||||
|
|
||||||
|
toggle: function(selector, cssclass) {
|
||||||
|
const items = document.querySelectorAll(selector);
|
||||||
|
for (const item of items) {
|
||||||
|
item.addEventListener('click', function(ev) {
|
||||||
|
if (item.classList.contains(cssclass)) {
|
||||||
|
item.classList.remove(cssclass);
|
||||||
|
} else {
|
||||||
|
item.classList.add(cssclass);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -80,7 +80,11 @@
|
||||||
<ul class="actions">
|
<ul class="actions">
|
||||||
{% for target_url, icon, label in actions %}
|
{% for target_url, icon, label in actions %}
|
||||||
{% if icon %}
|
{% if icon %}
|
||||||
<li><a href="{{ target_url }}"><i class="fas {{ icon }}" title="{{ label }}"></i></a></li>
|
{% if icon|slice:":2" == "fa" %}
|
||||||
|
<li><a href="{{ target_url }}"><i class="fas {{ icon }}" title="{{ label }}"></i></a></li>
|
||||||
|
{% else %}
|
||||||
|
<li><a href="{{ target_url }}" class="{{ icon }}">{{ label }}</a></li>
|
||||||
|
{% endif %}
|
||||||
{% else %}
|
{% else %}
|
||||||
<li><a href="{{ target_url }}">{{ label }}</a></li>
|
<li><a href="{{ target_url }}">{{ label }}</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -1,18 +1,23 @@
|
||||||
|
{% load i18n %}
|
||||||
{% load gas_tags %}
|
{% load gas_tags %}
|
||||||
|
{% if not is_submenu %}
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="{% url "gas:index" %}">{% trans "Home" %}</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
{% for entry in menu %}
|
{% for entry in menu %}
|
||||||
<li>
|
{% with children=entry|get_children:user_roles %}
|
||||||
|
<li class="nav-item{% if children %} dropdown{% endif %}{% if entry.icon %} icon-{{ entry.icon }}{% endif %}">
|
||||||
{% if entry.url %}
|
{% if entry.url %}
|
||||||
<a href="{% url entry.url %}">{{ entry.label }}</a>
|
<a href="{% url entry.url %}">{{ entry.label }}</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ entry.label }}
|
{{ entry.label }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% with children=entry|get_children:user_roles %}
|
|
||||||
{% if children %}
|
{% if children %}
|
||||||
<ul>
|
<ul>
|
||||||
{% include "gas/tags/navigation.html" with menu=children %}
|
{% include "gas/tags/navigation.html" with menu=children is_submenu=True %}
|
||||||
</ul>
|
</ul>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endwith %}
|
|
||||||
</li>
|
</li>
|
||||||
|
{% endwith %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in New Issue