Selected module management UI cleaning. (modal page)

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12138 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2012-11-06 10:01:01 +00:00
parent 4304910344
commit ef08a0921c
17 changed files with 290 additions and 466 deletions

View file

@ -271,9 +271,11 @@
<value xml:lang="zh-TW"><![CDATA[已選回覆]]></value>
</item>
<item name="cmd_comment_validation">
<value xml:lang="ko"><![CDATA[승인 후 공개]]></value>
<value xml:lang="en"><![CDATA[Use comment validation]]></value>
</item>
<item name="about_comment_validation">
<value xml:lang="ko"><![CDATA[관리자 승인 후 댓글을 공개합니다.]]></value>
<value xml:lang="en"><![CDATA[If you want to use comment validation before displaying on your module frontend select USE, otherwise select NOT USE.]]></value>
</item>
<item name="published">

View file

@ -1,23 +1,21 @@
<section class="section">
<h1>{$lang->comment}</h1>
<form ruleset="insertCommentModuleConfig" action="./" method="post" class="x_form-horizontal">
<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}" />
<div class="x_control-group">
<label for="comment_count" class="x_control-label">{$lang->comment_count}</label>
<div class="x_controls">
<input type="number" min="1" name="comment_count" id="comment_count" value="{$comment_config->comment_count}" style="width:40px" />
<span class="x_help-block">{$lang->about_comment_count}</span>
<input type="number" min="1" name="comment_count" id="comment_count" value="{$comment_config->comment_count}" style="width:50px" />
<p class="x_help-inline">{$lang->about_comment_count}</p>
</div>
</div>
<div class="x_control-group">
<label for="use_vote_up" class="x_control-label">{$lang->cmd_vote}</label>
<div class="x_controls">
<select name="use_vote_up" id="use_vote_up">
<select name="use_vote_up" id="use_vote_up" style="width:220px">
<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>
@ -27,7 +25,7 @@
<div class="x_control-group">
<label for="use_vote_down" class="x_control-label">{$lang->cmd_vote_down}</label>
<div class="x_controls">
<select name="use_vote_down" id="use_vote_down">
<select name="use_vote_down" id="use_vote_down" style="width:220px">
<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>
@ -37,11 +35,11 @@
<div class="x_control-group">
<label for="use_comment_validation" class="x_control-label">{$lang->cmd_comment_validation}</label>
<div class="x_controls">
<select name="use_comment_validation" id="use_comment_validation">
<select name="use_comment_validation" id="use_comment_validation" style="width:220px">
<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>
<span class="x_help-block">{$lang->about_comment_validation}</span>
<p class="x_help-inline">{$lang->about_comment_validation}</p>
</div>
</div>
<div class="x_clearfix btnArea">