mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 10:11:38 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8494 201d5d3c-b55e-5fd7-737f-ddc643e51545
44 lines
2 KiB
HTML
44 lines
2 KiB
HTML
<p class="xe_validator_error">{$XE_VALIDATOR_ERROR}</p>
|
|
<form ruleset="insertCommentModuleConfig" action="./" method="post">
|
|
<input type="hidden" name="act" value="procCommentInsertModuleConfig" />
|
|
<input type="hidden" name="target_module_srl" value="{$module_info->module_srl?$module_info->module_srl:$module_srls}" />
|
|
|
|
<h4 class="xeAdmin">{$lang->comment}</h4>
|
|
<table cellspacing="0" class="rowTable">
|
|
<tr>
|
|
<th><div>{$lang->comment_count}</div></th>
|
|
<td class="wide">
|
|
<p>{$lang->about_comment_count}</p>
|
|
<input type="text" name="comment_count" value="{$comment_config->comment_count}" class="inputTypeText w80" />
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th><div>{$lang->cmd_vote}</div></th>
|
|
<td>
|
|
<select name="use_vote_up" class="w100">
|
|
<option value="Y" <!--@if($comment_config->use_vote_up=='Y')-->selected="selected"<!--@end-->>{$lang->use}</option>
|
|
<option value="S" <!--@if($comment_config->use_vote_up=='S')-->selected="selected"<!--@end-->>{$lang->show_voted_member}</option>
|
|
<option value="N" <!--@if($comment_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($comment_config->use_vote_down=='Y')-->selected="selected"<!--@end-->>{$lang->use}</option>
|
|
<option value="S" <!--@if($comment_config->use_vote_down=='S')-->selected="selected"<!--@end-->>{$lang->show_voted_member}</option>
|
|
<option value="N" <!--@if($comment_config->use_vote_down=='N')-->selected="selected"<!--@end-->>{$lang->notuse}</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th colspan="2" class="button">
|
|
<span class="button strong black"><input type="submit" value="{$lang->cmd_save}"/></span>
|
|
</th>
|
|
</tr>
|
|
</table>
|
|
|
|
</form>
|