mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-28 23:03:25 +09:00
테이블 형식의 목록 나열형에서 col 강제지정을 제외하고 내용에 맞게 cell이 정리되도록 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4578 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
3a5df10d5c
commit
9ba8284f9c
34 changed files with 299 additions and 829 deletions
|
|
@ -10,31 +10,12 @@
|
|||
</form>
|
||||
|
||||
<table cellspacing="0" class="adminTable">
|
||||
<!--@if($lang_type == 'ko')-->
|
||||
{@ $col_width = array(0,65,45,45)}
|
||||
<!--@else if($lang_type == 'en')-->
|
||||
{@ $col_width = array(0,80,50,55)}
|
||||
<!--@else if($lang_type == 'zh-CN')-->
|
||||
{@ $col_width = array(0,65,45,45)}
|
||||
<!--@else if($lang_type == 'jp')-->
|
||||
{@ $col_width = array(0,65,45,45)}
|
||||
<!--@else if($lang_type == 'es')-->
|
||||
{@ $col_width = array(0,75,70,70)}
|
||||
<!--@else if($lang_type == 'ru')-->
|
||||
{@ $col_width = array(0,65,45,45)}
|
||||
<!--@else if($lang_type == 'fr')-->
|
||||
{@ $col_width = array(0,80,60,55)}
|
||||
<!--@end-->
|
||||
|
||||
<!--@foreach($col_width as $width)-->
|
||||
<col <!--@if($width)-->width="{$width}" <!--@end-->/>
|
||||
<!--@end-->
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">{$lang->category_title}</th>
|
||||
<th scope="col">{$lang->regdate}</th>
|
||||
<th scope="col">{$lang->cmd_modify}</th>
|
||||
<th scope="col">{$lang->cmd_delete}</th>
|
||||
<th scope="col" class="wide"><div>{$lang->category_title}</div></th>
|
||||
<th scope="col"><div>{$lang->regdate}</div></th>
|
||||
<th scope="col"><div>{$lang->cmd_modify}</div></th>
|
||||
<th scope="col"><div>{$lang->cmd_delete}</div></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
@ -46,7 +27,7 @@
|
|||
<!--@foreach($category_list as $key => $val)-->
|
||||
<tr>
|
||||
<td>{$val->title}</td>
|
||||
<td class="tahoma">{zdate($val->regdate,"Y-m-d H:i:s")}</td>
|
||||
<td class="tahoma nowrap">{zdate($val->regdate,"Y-m-d H:i:s")}</td>
|
||||
<td class="blue"><a href="{getUrl('module_category_srl',$val->module_category_srl)}">{$lang->cmd_modify}</a></td>
|
||||
<td class="red"><a href="#" onclick="doUpdateCategory('{$val->module_category_srl}','delete','{$lang->confirm_delete}');return false;">{$lang->cmd_delete}</a></td>
|
||||
</tr>
|
||||
|
|
|
|||
|
|
@ -7,35 +7,16 @@
|
|||
</form>
|
||||
|
||||
<table cellspacing="0" class="adminTable">
|
||||
<!--@if($lang_type == 'ko')-->
|
||||
{@ $col_width = array(0,40,80,75,70,140,70,100)}
|
||||
<!--@else if($lang_type == 'en')-->
|
||||
{@ $col_width = array(0,60,80,75,70,140,50,100)}
|
||||
<!--@else if($lang_type == 'zh-CN')-->
|
||||
{@ $col_width = array(0,40,80,75,60,140,65,80)}
|
||||
<!--@else if($lang_type == 'jp')-->
|
||||
{@ $col_width = array(0,80,80,70,80,140,45,100)}
|
||||
<!--@else if($lang_type == 'es')-->
|
||||
{@ $col_width = array(0,60,80,75,90,140,85,75)}
|
||||
<!--@else if($lang_type == 'ru')-->
|
||||
{@ $col_width = array(0,60,90,70,70,140,95,90)}
|
||||
<!--@else if($lang_type == 'fr')-->
|
||||
{@ $col_width = array(0,60,80,70,75,140,70,90)}
|
||||
<!--@end-->
|
||||
|
||||
<!--@foreach($col_width as $width)-->
|
||||
<col <!--@if($width)-->width="{$width}" <!--@end-->/>
|
||||
<!--@end-->
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">{$lang->module_name}</th>
|
||||
<th scope="col">{$lang->version}</th>
|
||||
<th scope="col">{$lang->author}</th>
|
||||
<th scope="col">{$lang->date}</th>
|
||||
<th scope="col">{$lang->table_count}</th>
|
||||
<th scope="col">{$lang->installed_path}</th>
|
||||
<th scope="col">{$lang->module_info}</th>
|
||||
<th scope="col">{$lang->module_action}</th>
|
||||
<th scope="col" class="wide"><div>{$lang->module_name}</div></th>
|
||||
<th scope="col"><div>{$lang->version}</div></th>
|
||||
<th scope="col"><div>{$lang->author}</div></th>
|
||||
<th scope="col"><div>{$lang->date}</div></th>
|
||||
<th scope="col"><div>{$lang->table_count}</div></th>
|
||||
<th scope="col"><div>{$lang->installed_path}</div></th>
|
||||
<th scope="col"><div>{$lang->module_info}</div></th>
|
||||
<th scope="col"><div>{$lang->module_action}</div></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue