mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2892 201d5d3c-b55e-5fd7-737f-ddc643e51545
55 lines
2.1 KiB
HTML
55 lines
2.1 KiB
HTML
<!--#include("header.html")-->
|
|
|
|
<!-- 레이아웃의 목록 -->
|
|
<table cellspacing="0" class="adminTable">
|
|
<col />
|
|
<col width="50"/>
|
|
<col width="120"/>
|
|
<col width="60"/>
|
|
<col width="70"/>
|
|
<col width="140"/>
|
|
<col width="80"/>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">{$lang->layout_name}</th>
|
|
<th scope="col">{$lang->version}</th>
|
|
<th scope="col">{$lang->author}</th>
|
|
<th scope="col">{$lang->menu_count}</th>
|
|
<th scope="col">{$lang->date}</th>
|
|
<th scope="col">{$lang->path}</th>
|
|
<th scope="col">{$lang->cmd_make}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!--@foreach($layout_list as $key => $val)-->
|
|
|
|
<!-- 레이아웃 정보 파일(conf/info.xml)가 있는 경우-->
|
|
<!--@if($val->title)-->
|
|
<tr>
|
|
<td rowspan="2">
|
|
<a href="{getUrl('','module','layout','act','dispLayoutAdminInfo','selected_layout',$val->layout)}" onclick="popopen(this.href,'layout_info');return false" class="blue">{$val->title}</a> <br />
|
|
({$val->layout})
|
|
</td>
|
|
<td class="tahoma">{$val->version}</td>
|
|
<td><a href="{$val->author->homepage}" onclick="window.open(this.href);return false;" class="blue">{$val->author->name}</a></td>
|
|
<td class="tahoma">{$val->menu_count}</td>
|
|
<td class="tahoma">{$val->author->date}</td>
|
|
<td class="tahoma">{$val->path}</td>
|
|
<td><a href="{getUrl('act','dispLayoutAdminInsert','layout',$val->layout)}" class="button"><span>{$lang->cmd_make}</span></a></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="6" class="left">
|
|
{nl2br(trim($val->author->description))}
|
|
</td>
|
|
</tr>
|
|
<!-- 레이아웃 정보 파일(conf/info.xml)이 없는 경우 -->
|
|
<!--@else-->
|
|
<tr>
|
|
<td colspan="6">{$val->layout}</td>
|
|
<td class="tahoma">{$val->path}</td>
|
|
<td class="tahoma blue"><a href="{getUrl('act','dispLayoutAdminInsert','layout',$val->layout)}">{$lang->cmd_make}</a></td>
|
|
</tr>
|
|
<!--@end-->
|
|
<!--@end-->
|
|
</tbody>
|
|
</table>
|