29-01-2024
This commit is contained in:
@@ -24,8 +24,9 @@
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!--
|
||||
{{ page | show_var }}-->
|
||||
{{ global | show_var }}
|
||||
|
||||
{{ page | show_var }}
|
||||
|
||||
<div class="admin-global-container">
|
||||
|
||||
@@ -75,7 +76,7 @@
|
||||
|
||||
<div class="sub-menu">
|
||||
{% for _item in _menuArray %}
|
||||
<a href="{{_item.url }}" {% if _item.view == global.view and
|
||||
<a href="?module={{ _item.module }}&view={{ _item.view }}" {% if _item.view == global.view and
|
||||
_type == global.module %} class="current" {% endif %}> {{ _item.name }} </a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
@@ -134,7 +135,7 @@
|
||||
{% assign _menuArray = _category[1].menu %}
|
||||
|
||||
{% if _category[1].enable == 1 %}
|
||||
<div class="item {% if _type == 'system' %} border-[rgba(255,255,255,0.15)] border-b{% endif %}">
|
||||
<div class="item {% if _type == 'system' %} border-[rgba(255,255,255,0.15)] border-b{% endif %} {% if _type == global.module %}current{% endif %}">
|
||||
{% if _type == 'order' %} <a href="" class="icons icon-sell"> </a>
|
||||
{% elsif _type == 'product' %} <a href="" class="icons icon-product"> </a>
|
||||
{% elsif _type == 'customer' %}<a href="" class="icons icon-user"> </a>
|
||||
@@ -154,7 +155,7 @@
|
||||
|
||||
<div class="menu-list">
|
||||
{% for _item in _menuArray %}
|
||||
<a href="{{ _item.url }}" {% if _item.view == global.view and
|
||||
<a href="?module={{ _item.module }}&view={{ _item.view }}" {% if _item.view == global.view and
|
||||
_type == global.module %} class="current" {% endif %}> {{ _item.name }} </a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
@@ -173,7 +174,7 @@
|
||||
|
||||
<div class="menu-list">
|
||||
{% for _item in global.main_menu.system.menu %}
|
||||
<a href="{{_item.url }}"> {{_item.name }} </a>
|
||||
<a href="?module={{ _item.module }}&view={{ _item.view}}"> {{_item.name }} </a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user