mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-05 22:55:32 +08:00
20 lines
588 B
HTML
20 lines
588 B
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<table style="width:auto">
|
||
<tr><th> </th>
|
||
<{foreach from=$app_roles key=key item=item}>
|
||
<td><{$item.name}></td>
|
||
<{/foreach}>
|
||
<{foreach from=$system_roles item=role}>
|
||
<tr>
|
||
<th><{$role.role_name}></th>
|
||
<{foreach from=$app_roles key=key item=item}>
|
||
<td><input type="checkbox" value="1" <{if $app_rolemap[$role.role_id][$key]}>checked="checked"<{/if}> name="rolemap[<{$role.role_id}>][<{$key}>]" /></td>
|
||
<{/foreach}>
|
||
</tr>
|
||
<{/foreach}>
|
||
</tr>
|
||
</table> |