rhymix/modules/editor/tpl/admin_index.html
bnu f2d86de0bc r4213 추가 수정
* Français 셀 폭 설정 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4214 201d5d3c-b55e-5fd7-737f-ddc643e51545
2008-05-16 15:42:01 +00:00

63 lines
2.8 KiB
HTML

<!--%import("js/editor_admin.js")-->
<h3>{$lang->editor} <span class="gray">{$lang->cmd_management}</span></h3>
<table cellspacing="0" class="adminTable gap1">
<!--@if($lang_type == 'ko')-->
{@ $col_width = array(0,60,130,75,50,60,50)}
<!--@else if($lang_type == 'en')-->
{@ $col_width = array(0,60,130,75,75,60,50)}
<!--@else if($lang_type == 'zh-CN')-->
{@ $col_width = array(0,60,130,75,45,55,50)}
<!--@else if($lang_type == 'jp')-->
{@ $col_width = array(0,80,130,80,50,60,50)}
<!--@else if($lang_type == 'es')-->
{@ $col_width = array(0,60,130,75,100,85,50)}
<!--@else if($lang_type == 'ru')-->
{@ $col_width = array(0,60,130,80,100,100,95)}
<!--@else if($lang_type == 'fr')-->
{@ $col_width = array(0,60,130,75,95,65,60)}
<!--@end-->
<!--@foreach($col_width as $width)-->
<col <!--@if($width)-->width="{$width}" <!--@end-->/>
<!--@end-->
<thead>
<tr>
<th scope="col">{$lang->component_name}</th>
<th scope="col">{$lang->component_version}</th>
<th scope="col">{$lang->component_author}</th>
<th scope="col">{$lang->component_date}</th>
<th scope="col">{$lang->cmd_setup}</th>
<th scope="col">{$lang->use}</th>
<th scope="col">{$lang->cmd_move}</th>
</tr>
</thead>
<tbody>
<!--@foreach($component_list as $component_name => $xml_info)-->
<tr>
<th scope="row" rowspan="2"><a href="{getUrl('module','editor','act','dispEditorComponentInfo','component_name',$component_name)}" onclick="popopen(this.href);return false;" class="blue">{$xml_info->title}</a><br />({$component_name})</th>
<td class="tahoam">{$xml_info->version}</td>
<td class="blue"><a href="{$xml_info->author->link}" onclick="window.open(this.href);return false;">{$xml_info->author->name}</a></td>
<td class="tahoma">{$xml_info->author->date}</td>
<td class="red"><a href="#" onclick="doSetupComponent('{$component_name}'); return false;">{$lang->cmd_setup}</a></td>
<td>
<!--@if($xml_info->enabled=='Y')-->
<a href="#" onclick="doDisableComponent('{$component_name}');return false;" class="blue">{$lang->cmd_enable}</a>
<!--@else-->
<a href="#" onclick="doEnableComponent('{$component_name}');return false;" class="red">{$lang->cmd_disable}</a>
<!--@end-->
</td>
<td>
<a href="#" onclick="doMoveListOrder('{$component_name}','up');return false;"><img src="../../admin/tpl/images/button_up.gif" alt="{$lang->cmd_move_up}" width="14" height="14" /></a>
<a href="#" onclick="doMoveListOrder('{$component_name}','down');return false;"><img src="../../admin/tpl/images/button_down.gif" alt="{$lang->cmd_move_down}" width="14" height="14" /></a>
</td>
</tr>
<tr>
<td colspan="6" class="left">
{nl2br($xml_info->description)}
</td>
</tr>
<!--@end-->
</tbody>
</table>