mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-01 05:26:43 +08:00
26 lines
699 B
HTML
26 lines
699 B
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<{if $install_options}>
|
||
<div id="install_options" style="padding-left:150px">
|
||
<{foreach from=$install_options item=group key=app_id}>
|
||
<h4><{$apps_name[$app_id]}></h4>
|
||
<{foreach from=$group item=item key=key}>
|
||
<div class="clearfix">
|
||
<div class="span-2">
|
||
<label><{$item.title}></label>
|
||
</div>
|
||
<div class="span-auto"><{input params=$item class="tasks_ipt" name="options[{$app_id}][{$key}]"}></div>
|
||
</div>
|
||
<{/foreach}>
|
||
<{/foreach}>
|
||
</div>
|
||
|
||
<div class="table-action" >
|
||
<{button class="appbtn" label=$___desktop="储存并继续"|t:'desktop' type="button"}>
|
||
</div>
|
||
|
||
|
||
<{/if}> |