Initial commit
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
<include file="Inc:head"/>
|
||||
<div class="widget-box2" style="margin:0px;">
|
||||
<div class="widget-content nopadding">
|
||||
<form action="__SELF__" method="post" class="form-horizontal" onsubmit="return save_form2(this)">
|
||||
<input type="hidden" name="pubid" value="{$pubid}">
|
||||
<div class="control-group">
|
||||
<label class="control-label">名称</label>
|
||||
<div class="controls"><input type="text" name="name" value=""></div>
|
||||
</div>
|
||||
<?php
|
||||
if(C('LANG_SWITCH_ON')){
|
||||
?>
|
||||
<div class="control-group">
|
||||
<label class="control-label">语言</label>
|
||||
<div class="controls">
|
||||
<select name="lang">
|
||||
<option value="">请选择语言</option>
|
||||
<foreach name="LANG_OPT" item="v">
|
||||
<option value="{$key}">{$v}</option>
|
||||
</foreach>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<div class="control-group">
|
||||
<label class="control-label">缩略图<span></span></label>
|
||||
<div class="controls">
|
||||
<input type="text" name="thumb" id="info_thumb" value="<?=$r?$r['thumb']:''?>" style="width:280px;"/><button type="button" class="choose_file" onClick="selectfile('info_thumb','','img')">选择图片</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="form-actions">
|
||||
<button type="submit" class="btn btn-success form_submit">确定</button>
|
||||
<button type="button" class="btn btn-danger" id="closeIframe">关闭</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<include file="Inc/foot" noiframeauto="true" noautotitle="true"/>
|
||||
Reference in New Issue
Block a user