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/trunk@157 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
8788afbd5f
commit
bbecc3b9e1
12 changed files with 154 additions and 103 deletions
|
|
@ -1,4 +1,5 @@
|
|||
#admin_title {
|
||||
font-size:20pt;
|
||||
font-weight:bold;
|
||||
float:left;
|
||||
height:30px;
|
||||
|
|
@ -9,14 +10,15 @@
|
|||
height:30px;
|
||||
}
|
||||
|
||||
#admin_module_list {
|
||||
#admin_main_menu {
|
||||
clear:both;
|
||||
float:left;
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
#admin_module_content {
|
||||
position:relative;
|
||||
margin-left:150px;
|
||||
left:0px;
|
||||
top:30px;
|
||||
#admin_main_menu .selected {
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
#admin_content {
|
||||
clear:both;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{$tetete}
|
||||
haha
|
||||
|
|
|
|||
|
|
@ -3,20 +3,23 @@
|
|||
|
||||
<!--#include("./common/tpl/common_header.html")-->
|
||||
|
||||
<div id="admin_title"><a href="./?module=admin">zeroboard5</a></div>
|
||||
<div id="admin_title">
|
||||
<a href="./?module=admin">zeroboard5</a>
|
||||
</div>
|
||||
|
||||
<div id="admin_info">
|
||||
<a href="{getUrl('act','dispLogout')}">{$lang->cmd_logout}</a>
|
||||
</div>
|
||||
<div id="admin_module_list">
|
||||
<!--@foreach($module_list as $module_item)-->
|
||||
<!--@if($module_item->module != $module)-->
|
||||
<div <!--@if($module_item->module==$sid)-->style="font-weight:bold;"<!--@end-->>
|
||||
<a href="{getUrl('sid',$module_item->module,'act','','module_srl','','page','')}">{$module_item->title}</a>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
<div id="admin_main_menu">
|
||||
<!--@foreach($menu_item as $key => $val)-->
|
||||
<span <!--@if($act==$val->act)-->class="selected"<!--@end-->>
|
||||
<a href="#" onclick="location.href='{getUrl('act',$val->act)}'">{$val->title}</a>
|
||||
</span>
|
||||
<!--@end-->
|
||||
</div>
|
||||
<div id="admin_module_content">
|
||||
|
||||
<div id="admin_content">
|
||||
{$content}
|
||||
</div>
|
||||
|
||||
|
|
|
|||
26
modules/admin/tpl/module_list.html
Normal file
26
modules/admin/tpl/module_list.html
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<table border="1" width="100%">
|
||||
<tr>
|
||||
<td>{$lang->module_name}</td>
|
||||
<td>{$lang->module_version}</td>
|
||||
<td>{$lang->module_author}</td>
|
||||
<td>{$lang->module_table_count}</td>
|
||||
<td>{$lang->module_installed_path}</td>
|
||||
<td>{$lang->cmd_management}</td>
|
||||
</tr>
|
||||
<!--@foreach($module_list as $key => $val)-->
|
||||
<tr>
|
||||
<td rowspan="2">{$val->title} <br /> ({$val->module})</td>
|
||||
<td>{$val->version}</td>
|
||||
<td><a href="#" onclick="window.open('{$val->homepage}')">{$val->author}</a></td>
|
||||
<td>{$val->created_table_count}/{$val->table_count}</td>
|
||||
<td>{$val->path}</td>
|
||||
<td rowspan="2">{$lang->cmd_management}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="4">
|
||||
{$val->author->date}
|
||||
{nl2br($val->author->description)}
|
||||
</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
</table>
|
||||
Loading…
Add table
Add a link
Reference in a new issue