mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +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
|
|
@ -8,48 +8,31 @@
|
|||
|
||||
<!-- 목록 -->
|
||||
<table cellspacing="0" class="adminTable">
|
||||
<!--@if($lang_type == 'ko')-->
|
||||
{@ $col_width = array(50,130,0,65,45,45,45)}
|
||||
<!--@else if($lang_type == 'en')-->
|
||||
{@ $col_width = array(50,130,0,80,50,50,55)}
|
||||
<!--@else if($lang_type == 'zh-CN')-->
|
||||
{@ $col_width = array(50,130,0,65,45,45,45)}
|
||||
<!--@else if($lang_type == 'jp')-->
|
||||
{@ $col_width = array(50,130,0,65,45,55,45)}
|
||||
<!--@else if($lang_type == 'es')-->
|
||||
{@ $col_width = array(50,130,0,80,40,55,70)}
|
||||
<!--@else if($lang_type == 'ru')-->
|
||||
{@ $col_width = array(50,130,0,90,95,85,70)}
|
||||
<!--@else if($lang_type == 'fr')-->
|
||||
{@ $col_width = array(50,130,0,80,40,50,55)}
|
||||
<!--@end-->
|
||||
|
||||
<!--@foreach($col_width as $width)-->
|
||||
<col <!--@if($width)-->width="{$width}" <!--@end-->/>
|
||||
<!--@end-->
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">{$lang->no}</th>
|
||||
<th scope="col"><div>{$lang->no}</div></th>
|
||||
<th scope="col">
|
||||
<form action="./" method="get" onsubmit="return doChangeCategory(this);">
|
||||
<input type="hidden" name="module" value="{$module}" />
|
||||
<input type="hidden" name="act" value="{$act}" />
|
||||
<select name="module_category_srl" class="w80">
|
||||
<option value="">{$lang->module_category}</option>
|
||||
<!--@foreach($module_category as $key => $val)-->
|
||||
<option value="{$key}" <!--@if($module_category_srl==$key)-->selected="selected"<!--@end-->>{$val->title}</option>
|
||||
<!--@end-->
|
||||
<option value="">---------</option>
|
||||
<option value="-1">{$lang->cmd_management}</option>
|
||||
</select>
|
||||
<input type="submit" name="go_button" id="go_button" value="GO" class="buttonTypeGo" />
|
||||
</form>
|
||||
<div>
|
||||
<form action="./" method="get" onsubmit="return doChangeCategory(this);">
|
||||
<input type="hidden" name="module" value="{$module}" />
|
||||
<input type="hidden" name="act" value="{$act}" />
|
||||
<select name="module_category_srl" class="w120">
|
||||
<option value="">{$lang->module_category}</option>
|
||||
<!--@foreach($module_category as $key => $val)-->
|
||||
<option value="{$key}" <!--@if($module_category_srl==$key)-->selected="selected"<!--@end-->>{$val->title}</option>
|
||||
<!--@end-->
|
||||
<option value="">---------</option>
|
||||
<option value="-1">{$lang->cmd_management}</option>
|
||||
</select>
|
||||
<input type="submit" name="go_button" id="go_button" value="GO" class="buttonTypeGo" />
|
||||
</form>
|
||||
</div>
|
||||
</th>
|
||||
<th scope="col">{$lang->mid} / {$lang->browser_title}</th>
|
||||
<th scope="col">{$lang->regdate}</th>
|
||||
<th scope="col">{$lang->cmd_view}</th>
|
||||
<th scope="col">{$lang->cmd_copy}</th>
|
||||
<th scope="col">{$lang->cmd_delete}</th>
|
||||
<th scope="col" class="wide"><div>{$lang->mid} / {$lang->browser_title}</div></th>
|
||||
<th scope="col"><div>{$lang->regdate}</div></th>
|
||||
<th scope="col"><div>{$lang->cmd_view}</div></th>
|
||||
<th scope="col"><div>{$lang->cmd_copy}</div></th>
|
||||
<th scope="col"><div>{$lang->cmd_delete}</div></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue