mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10272 201d5d3c-b55e-5fd7-737f-ddc643e51545
51 lines
2.5 KiB
HTML
51 lines
2.5 KiB
HTML
<form ruleset="insertCommentModuleConfig" action="./" method="post" class="form">
|
|
<input type="hidden" name="module" value="comment" />
|
|
<input type="hidden" name="act" value="procCommentInsertModuleConfig" />
|
|
<input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" />
|
|
<input type="hidden" name="target_module_srl" value="{$module_info->module_srl?$module_info->module_srl:$module_srls}" />
|
|
<h3 class="h3">{$lang->comment}</h3>
|
|
<div class="table">
|
|
<table width="100%" border="1" cellspacing="0">
|
|
<tr>
|
|
<th scope="row"><label for="comment_count">{$lang->comment_count}</label></th>
|
|
<td class="text">
|
|
<input type="text" name="comment_count" id="comment_count" value="{$comment_config->comment_count}" style="width:30px" />
|
|
<span class="desc">{$lang->about_comment_count}</span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="use_vote_up">{$lang->cmd_vote}</label></th>
|
|
<td class="text">
|
|
<select name="use_vote_up" id="use_vote_up">
|
|
<option value="Y" selected="selected"|cond="$comment_config->use_vote_up=='Y'">{$lang->use}</option>
|
|
<option value="S" selected="selected"|cond="$comment_config->use_vote_up=='S'">{$lang->use_and_display}</option>
|
|
<option value="N" selected="selected"|cond="$comment_config->use_vote_up=='N'">{$lang->notuse}</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="use_vote_down">{$lang->cmd_vote_down}</label></th>
|
|
<td class="text">
|
|
<select name="use_vote_down" id="use_vote_down">
|
|
<option value="Y" selected="selected"|cond="$comment_config->use_vote_down=='Y'">{$lang->use}</option>
|
|
<option value="S" selected="selected"|cond="$comment_config->use_vote_down=='S'">{$lang->use_and_display}</option>
|
|
<option value="N" selected="selected"|cond="$comment_config->use_vote_down=='N'">{$lang->notuse}</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="use_comment_validation">{$lang->cmd_comment_validation}</label></th>
|
|
<td>
|
|
<select name="use_comment_validation">
|
|
<option value="N" selected="selected"|cond="$comment_config->use_comment_validation=='N'">{$lang->notuse}</option>
|
|
<option value="Y" selected="selected"|cond="$comment_config->use_comment_validation=='Y'">{$lang->use}</option>
|
|
</select>
|
|
<p>{$lang->about_comment_validation}</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div class="btnArea">
|
|
<span class="btn"><input type="submit" value="{$lang->cmd_save}"/></span>
|
|
</div>
|
|
</form>
|