인터페이스 통일 작업 - 댓글, 문서, 엮인글 모듈의 전체선택 체크박스 위치를 게시판, 회원, 첨부파일, 설문조사 등 다른 모듈들과 동일하게 만듬.

더불어 언어별 셀 간격 설정 코드를 문서 모듈에서 이미 쓰이는 형태로 단순하게 바꿈.

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4213 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
mmx900 2008-05-16 06:40:47 +00:00
parent 7561449424
commit 593741d48a
4 changed files with 59 additions and 180 deletions

View file

@ -11,62 +11,26 @@
<!-- 목록 -->
<table cellspacing="0" class="adminTable">
<!--@if($lang_type == 'ko')-->
<col width="50" />
<col />
<col width="150" />
<col width="65" />
<col width="65" />
<col width="90" />
<col width="45" />
<!--@else if($lang_type == 'en')-->
<col width="50" />
<col />
<col width="150" />
<col width="75" />
<col width="75" />
<col width="90" />
<col width="45" />
<!--@else if($lang_type == 'zh-CN')-->
<col width="50" />
<col />
<col width="150" />
<col width="70" />
<col width="70" />
<col width="90" />
<col width="45" />
<!--@else if($lang_type == 'jp')-->
<col width="50" />
<col />
<col width="150" />
<col width="75" />
<col width="75" />
<col width="90" />
<col width="45" />
<!--@else if($lang_type == 'es')-->
<col width="50" />
<col />
<col width="150" />
<col width="75" />
<col width="75" />
<col width="90" />
<col width="50" />
<!--@else if($lang_type == 'ru')-->
<col width="50" />
<col />
<col width="150" />
<col width="75" />
<col width="75" />
<col width="90" />
<col width="95" />
<!--@end-->
<thead>
<!--@if($lang_type == 'ko')-->
{@ $col_width = array(50,40,0,150,65,65,90,45)}
<!--@else if($lang_type == 'en')-->
{@ $col_width = array(50,40,0,150,75,75,90,45)}
<!--@else if($lang_type == 'zh-CN')-->
{@ $col_width = array(50,40,0,150,70,70,90,45)}
<!--@else if($lang_type == 'jp')-->
{@ $col_width = array(50,40,0,150,75,75,90,45)}
<!--@else if($lang_type == 'es')-->
{@ $col_width = array(50,40,0,150,75,75,90,50)}
<!--@else if($lang_type == 'ru')-->
{@ $col_width = array(50,40,0,150,75,75,90,95)}
<!--@end-->
<!--@foreach($col_width as $width)-->
<col <!--@if($width)-->width="{$width}" <!--@end-->/>
<!--@end-->
<tr>
<th scope="col">{$lang->no}</th>
<th scope="col"><input type="checkbox" onclick="checkboxSelectAll(this.form, 'cart'); return false;" /></th>
<th scope="col">
<div class="nowrap">
@ -90,6 +54,7 @@
<!--@foreach($comment_list as $no => $val)-->
<tr>
<td rowspan="2" class="tahoma">{$no}</td>
<td><input type="checkbox" name="cart" value="{$val->comment_srl}" /></td>
<td class="blue"><a href="./?mid={$module_list[$val->module_srl]->mid}" onclick="window.open(this.href);return false">{htmlspecialchars($module_list[$val->module_srl]->browser_title)}</a></td>
<td><div class="member_{$val->member_srl}">{htmlspecialchars($val->nick_name)}</div></td>
<td class="tahoma">{nl2br(zdate($val->regdate,"Y-m-d\nH:i:s"))}</td>
@ -99,7 +64,6 @@
</tr>
<tr>
<td colspan="6" class="left">
<input type="checkbox" name="cart" value="{$val->comment_srl}" />
{cut_str(htmlspecialchars(strip_tags($val->content)),100,'...')}
</td>
</tr>