Files
OMS/app/desktop/view/left-panel.html
2025-12-28 23:13:25 +08:00

19 lines
546 B
HTML
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
Copyright © ShopeX http://www.shopex.cn. All rights reserved.
See LICENSE file for license details.
-->
<{foreach from=$menus_data item=menus}>
<div class="side-bx">
<div class="side-bx-title">
<h3><{$menus.menugroup}></h3>
</div>
<div class="side-bx-bd">
<ul><{foreach from=$menus.menu item=menu}>
<li><a <{if $menu.addon}>target="_blank"<{/if}>href="index.php?<{$menu.menu_path}>"><{$menu.menu_title}></a></li>
<{/foreach}>
</ul>
</div>
</div>
<{/foreach}>