mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 11:44:10 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@8113 201d5d3c-b55e-5fd7-737f-ddc643e51545
47 lines
2.3 KiB
HTML
47 lines
2.3 KiB
HTML
<!--%import("filter/insert_document_module_config.xml")-->
|
|
|
|
<form action="./" method="post" onsubmit="return procFilter(this, insert_document_module_config)">
|
|
<input type="hidden" name="target_module_srl" value="{$module_info->module_srl?$module_info->module_srl:$module_srls}" />
|
|
|
|
<h4 class="xeAdmin">{$lang->document}</h4>
|
|
|
|
<table cellspacing="0" class="rowTable">
|
|
<tr>
|
|
<th><div>{$lang->history}</div></th>
|
|
<td>
|
|
<p>{$lang->about_use_history}</p>
|
|
<select name="use_history" class="w100">
|
|
<option value="N" <!--@if($document_config->use_history=='N')-->selected="selected"<!--@end-->>{$lang->notuse}</option>
|
|
<option value="Y" <!--@if($document_config->use_history=='Y')-->selected="selected"<!--@end-->>{$lang->use}</option>
|
|
<option value="Trace" <!--@if($document_config->use_history=='Trace')-->selected="selected"<!--@end-->>{$lang->trace_only}</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th><div>{$lang->cmd_vote}</div></th>
|
|
<td>
|
|
<select name="use_vote_up" class="w100">
|
|
<option value="Y" <!--@if($document_config->use_vote_up=='Y')-->selected="selected"<!--@end-->>{$lang->use}</option>
|
|
<option value="S" <!--@if($document_config->use_vote_up=='S')-->selected="selected"<!--@end-->>{$lang->show_voted_member}</option>
|
|
<option value="N" <!--@if($document_config->use_vote_up=='N')-->selected="selected"<!--@end-->>{$lang->notuse}</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th><div>{$lang->cmd_vote_down}</div></th>
|
|
<td>
|
|
<select name="use_vote_down" class="w100">
|
|
<option value="Y" <!--@if($document_config->use_vote_down=='Y')-->selected="selected"<!--@end-->>{$lang->use}</option>
|
|
<option value="S" <!--@if($document_config->use_vote_down=='S')-->selected="selected"<!--@end-->>{$lang->show_voted_member}</option>
|
|
<option value="N" <!--@if($document_config->use_vote_down=='N')-->selected="selected"<!--@end-->>{$lang->notuse}</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th class="button" colspan="2">
|
|
<span class="button strong black"><input type="submit" value="{$lang->cmd_save}"/></span>
|
|
</th>
|
|
</tr>
|
|
</table>
|
|
|
|
</form>
|