rhymix/modules/document/tpl/document_module_config.html
ChanMyeong 12ca869ccd Admin HTML Markup Clean.
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9371 201d5d3c-b55e-5fd7-737f-ddc643e51545
2011-09-27 09:50:44 +00:00

43 lines
2.1 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}" />
<h3 class="h3">{$lang->document}</h3>
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr>
<th>{$lang->history}</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>{$lang->cmd_vote}</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>{$lang->cmd_vote_down}</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>
</table>
</div>
<div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_save}"/></span>
</div>
</form>