mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-18 10:49:54 +09:00
add module page template
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8998 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
3bfc7e8275
commit
a9202a74aa
1 changed files with 55 additions and 0 deletions
55
modules/module/tpl/spInstalledModule.html
Normal file
55
modules/module/tpl/spInstalledModule.html
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
<div class="content" id="content">
|
||||
<h1 class="h1">Installed Module</h1>
|
||||
<div class="table even easyList">
|
||||
<table width="100%" border="1" cellspacing="0">
|
||||
<caption>
|
||||
All(8)
|
||||
</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" class="title">{$lang->layout_name}</th>
|
||||
<th scope="col">{$lang->version}</th>
|
||||
<th scope="col">{$lang->author}</th>
|
||||
<th scope="col">{$lang->path}</th>
|
||||
<th scope="col">{$lang->cmd_delete}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<!--@foreach($module_list as $key => $val)-->
|
||||
<tr>
|
||||
<td class="title">
|
||||
<p><a href="{getUrl('','module','admin','act',$val->admin_index_act)}">{$val->title}</a></p>
|
||||
<p>{$val->description}</p>
|
||||
<!--@if($val->need_install)-->
|
||||
<p class="update">이 항목 업데이트가 가능합니다. <a href=="#" onclick="doUpdateModule('{$val->module}'); return false;">업데이트 하시겠습니까?</a></p>
|
||||
<!--@end-->
|
||||
<!--@if($val->need_update)-->
|
||||
<p class="update">이 항목 설치가 가능합니다. <a href="#" onclick="doInstallModule('{$val->module}');return false;">설치 하시겠습니까?</a></p>
|
||||
<!--@end-->
|
||||
</td>
|
||||
<td>{$val->version}</td>
|
||||
<td>
|
||||
<!--@foreach($val->author as $author)-->
|
||||
<!--@if($author->homepage)-->
|
||||
<a href="{$author->homepage}" onclick="window.open(this.href);return false;" target="_blank">
|
||||
<!--@end-->
|
||||
{$author->name}
|
||||
<!--@if($author->homepage)-->
|
||||
</a>
|
||||
<!--@end-->
|
||||
<!--@endforeach-->
|
||||
</td>
|
||||
<td>{$val->path}</td>
|
||||
<td>
|
||||
<!--@if($val->delete_url)-->
|
||||
<a href="{$val->delete_url}">{$lang->cmd_delete}</a>
|
||||
<!--@end-->
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
<!--@end-->
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue