mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2327 201d5d3c-b55e-5fd7-737f-ddc643e51545
40 lines
1.5 KiB
HTML
40 lines
1.5 KiB
HTML
<!--#include("header.html")-->
|
|
<!--%import("filter/insert_config.xml")-->
|
|
|
|
<form action="./" method="get" onsubmit="return procFilter(this, insert_config)">
|
|
<table cellspacing="0" class="tableType2">
|
|
<col width="150" />
|
|
<col />
|
|
<tr>
|
|
<th scope="row">{$lang->sample_code}</th>
|
|
<td>
|
|
<textarea class="inputTypeTextArea w400" readonly="readonly">{$sample_code}</textarea>
|
|
<p>{$lang->about_sample_code}</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{$lang->skin}</th>
|
|
<td>
|
|
<select name="skin">
|
|
<!--@foreach($skin_list as $key=>$val)-->
|
|
<option value="{$key}" <!--@if($config->skin==$key)-->selected="selected"<!--@end-->>{$val->title}</option>
|
|
<!--@end-->
|
|
</select>
|
|
<p>{$lang->about_skin}</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{$lang->module}</th>
|
|
<td>
|
|
<p>{$lang->about_target_module}</p>
|
|
<!--@foreach($mid_list as $key => $val)-->
|
|
<p><input type="checkbox" name="target_mid" value="{$key}" id="target_mid_{$key}" <!--@if(in_array($key,$config->target_mid))-->checked="checked"<!--@end--> /> <label for="target_mid_{$key}">{$val->browser_title} ({$val->mid})</label></p>
|
|
<!--@end-->
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div class="tRight gap1">
|
|
<span class="button"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span>
|
|
</div>
|
|
</form>
|