14 lines
495 B
HTML
Executable File
14 lines
495 B
HTML
Executable File
<ul class="am-nav am-nav-pills table-nav">
|
|
{{if !empty($nav_data) and is_array($nav_data)}}
|
|
{{foreach $nav_data as $v}}
|
|
<li {{if $view_type eq $v['type']}}class="am-active"{{/if}}>
|
|
<a href="{{:MyUrl('admin/pluginsadmin/index', ['view_type'=>$v['type']])}}">{{$v.name}}</a>
|
|
</li>
|
|
{{/foreach}}
|
|
{{/if}}
|
|
{{if $is_system_show_base eq 1 and !empty($store_url)}}
|
|
<li class="am-fr">
|
|
|
|
</li>
|
|
{{/if}}
|
|
</ul> |