mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-25 14:19:58 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@320 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
b6268cf13f
commit
b277fe9d7f
10 changed files with 172 additions and 161 deletions
37
modules/layout/tpl.admin/downloaded_layout_list.html
Normal file
37
modules/layout/tpl.admin/downloaded_layout_list.html
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
<!-- 레이아웃의 목록 -->
|
||||
<div>
|
||||
{$lang->about_downloaded_layouts} |
|
||||
<a href="#" onclick="location.href='./?module=admin&mo=layout&act=dispContent';return false;">{$lang->cmd_move_to_installed_list}</a>
|
||||
</div>
|
||||
<div>
|
||||
<table border="1" width="100%">
|
||||
<tr>
|
||||
<td>{$lang->layout_name}</td>
|
||||
<td>{$lang->version}</td>
|
||||
<td>{$lang->author}</td>
|
||||
<td>{$lang->menu_count}</td>
|
||||
<td>{$lang->date}</td>
|
||||
<td>{$lang->path}</td>
|
||||
<td>{$lang->cmd_make}</td>
|
||||
</tr>
|
||||
<!--@foreach($layout_list as $key => $val)-->
|
||||
<tr>
|
||||
<td rowspan="2">
|
||||
{$val->title} <br />
|
||||
({$val->layout})
|
||||
</td>
|
||||
<td>{$val->version}</td>
|
||||
<td><a href="#" onclick="window.open('{$val->author->homepage}')">{$val->author->name}</a></td>
|
||||
<td>{$val->menu_count}</td>
|
||||
<td>{$val->author->date}</td>
|
||||
<td>{$val->path}</td>
|
||||
<td><a href="{getUrl('mo','layout','act','dispInsertLayout','layout',$val->layout)}">{$lang->cmd_make}</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="6">
|
||||
{nl2br($val->author->description)}
|
||||
</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
</table>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue