mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-30 08:39:58 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@323 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
e8392161fe
commit
c32a8400d3
10 changed files with 107 additions and 51 deletions
|
|
@ -1,4 +1,5 @@
|
|||
<!--%import("js/admin.js")-->
|
||||
<!--%import("filter/update_layout_info.xml")-->
|
||||
<!--%import("filter/insert_layout_menu.xml")-->
|
||||
<!--%import("filter/delete_layout_menu.xml")-->
|
||||
|
||||
|
|
@ -26,7 +27,7 @@
|
|||
</div>
|
||||
|
||||
<div style="margin-bottom:10px;">
|
||||
<form id="fo_layout" action="./" method="post" enctype="multipart/form-data">
|
||||
<form id="fo_layout" action="./" method="get" onsubmit="return procFilter(this, update_layout_info)">
|
||||
<input type="hidden" name="layout_srl" value="{$layout_srl}" />
|
||||
<input type="hidden" name="layout" value="{$layout_info->layout}" />
|
||||
|
||||
|
|
@ -41,19 +42,24 @@
|
|||
<tr>
|
||||
<th>{$var->name}</th>
|
||||
<!--@if($var->type == "text")-->
|
||||
<td><input type="text" name="{$id}" value="" /></td>
|
||||
<td><input type="text" name="{$id}" value="{$var->value}" /></td>
|
||||
<!--@elseif($var->type == "textarea")-->
|
||||
<td><textarea name="{$id}"></textarea></td>
|
||||
<td><textarea name="{$id}">{$var->value}</textarea></td>
|
||||
<!--@elseif($var->type == "select")-->
|
||||
<td>
|
||||
<select name="{$id}">
|
||||
<!--@foreach($var->options as $key => $val)-->
|
||||
<option value="{$val}">{$val}</option>
|
||||
<option value="{$val}" <!--@if($val==$var->value)-->selected="true"<!--@end-->>{$val}</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
<!--@end-->
|
||||
</tr>
|
||||
<!--@end-->
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<input type="submit" value="{$lang->cmd_save}" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue