This commit is contained in:
2024-01-28 11:27:52 +07:00
parent 736f5b9c4e
commit 9b6cd189ea
23 changed files with 223 additions and 107 deletions

View File

@@ -75,7 +75,7 @@
<div class="sub-menu">
{% for _item in _menuArray %}
<a href="?module={{ _item.module }}&view={{ _item.view }}" {% if _item.view == global.view and
<a href="{{_item.url }}" {% if _item.view == global.view and
_type == global.module %} class="current" {% endif %}> {{ _item.name }} </a>
{% endfor %}
</div>
@@ -154,7 +154,7 @@
<div class="menu-list">
{% for _item in _menuArray %}
<a href="?module={{ _item.module }}&view={{ _item.view }}" {% if _item.view == global.view and
<a href="{{ _item.url }}" {% if _item.view == global.view and
_type == global.module %} class="current" {% endif %}> {{ _item.name }} </a>
{% endfor %}
</div>
@@ -173,7 +173,7 @@
<div class="menu-list">
{% for _item in global.main_menu.system.menu %}
<a href="/?module={{_item.module }}&view={{_item.view }}"> {{_item.name }} </a>
<a href="{{_item.url }}"> {{_item.name }} </a>
{% endfor %}
</div>
</div>