rhymix/modules/document/tpl/document_module_config.html
ngleader 741582c912 r8112 기능추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@8113 201d5d3c-b55e-5fd7-737f-ddc643e51545
2011-02-21 04:41:51 +00:00

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>