mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-27 23:29:57 +09:00
css 및 js 호출순서 조정기능 추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5785 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
4f380d9c48
commit
61851f1dfe
2149 changed files with 109090 additions and 18689 deletions
|
|
@ -2,7 +2,7 @@
|
|||
<!--%import("js/referer_admin.js")-->
|
||||
<!--%import("css/referer.css")-->
|
||||
|
||||
<h3>{$lang->referer} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
<h3 class="xeAdmin">{$lang->referer} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, delete_stat)">
|
||||
<input type="hidden" name="host" value="{$host}" />
|
||||
|
||||
|
|
|
|||
|
|
@ -1,49 +1,45 @@
|
|||
<!--%import("css/referer.css")-->
|
||||
|
||||
<h3>{$lang->referer} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
<h3 class="xeAdmin">{$lang->referer} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
|
||||
<div class="adminLeftContent topGap">
|
||||
<table cellspacing="0" class="adminTable ">
|
||||
<caption>Total <strong>{number_format($total_count)}</strong>, Page <strong>{number_format($page)}</strong>/{number_format($total_page)}</caption>
|
||||
<tbody>
|
||||
<!--@foreach($referer_list as $no => $val)-->
|
||||
<tr class="row{$cycle_idx}">
|
||||
<td class="tahoma">{zdate($val->regdate,"Y-m-d")}</td>
|
||||
<td class="tahoma">{$val->host}</td>
|
||||
<td class="tahoma refererUrl"><a href="{$val->url}">{$val->url}</a></td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
</tbody>
|
||||
</table>
|
||||
<table cellspacing="0" class="rowTable ">
|
||||
<caption>Total {number_format($total_count)} Page {number_format($page)}/{number_format($total_page)}</caption>
|
||||
<tbody>
|
||||
<!--@foreach($referer_list as $no => $val)-->
|
||||
<tr class="row{$cycle_idx}">
|
||||
<td class="tahoma">{zdate($val->regdate,"Y-m-d")}</td>
|
||||
<td class="tahoma">{$val->host}</td>
|
||||
<td class="tahoma refererUrl"><a href="{$val->url}">{$val->url}</a></td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<!-- 페이지 네비게이션 -->
|
||||
<div class="pagination a1">
|
||||
<a href="{getUrl('page','','module_srl','')}" class="prevEnd">{$lang->first_page}</a>
|
||||
<!--@while($page_no = $page_navigation->getNextPage())-->
|
||||
<!--@if($page == $page_no)-->
|
||||
<strong>{$page_no}</strong>
|
||||
<!--@else-->
|
||||
<a href="{getUrl('page',$page_no,'module_srl','')}">{$page_no}</a>
|
||||
<!--@end-->
|
||||
<!-- 페이지 네비게이션 -->
|
||||
<div class="pagination a1">
|
||||
<a href="{getUrl('page','','module_srl','')}" class="prevEnd">{$lang->first_page}</a>
|
||||
<!--@while($page_no = $page_navigation->getNextPage())-->
|
||||
<!--@if($page == $page_no)-->
|
||||
<strong>{$page_no}</strong>
|
||||
<!--@else-->
|
||||
<a href="{getUrl('page',$page_no,'module_srl','')}">{$page_no}</a>
|
||||
<!--@end-->
|
||||
<a href="{getUrl('page',$page_navigation->last_page,'module_srl','')}" class="nextEnd">{$lang->last_page}</a>
|
||||
</div>
|
||||
<!--@end-->
|
||||
<a href="{getUrl('page',$page_navigation->last_page,'module_srl','')}" class="nextEnd">{$lang->last_page}</a>
|
||||
</div>
|
||||
|
||||
<div class="adminRightExtra topGap">
|
||||
<table cellspacing="0" class="adminTable">
|
||||
<caption>{$lang->ranking}</caption>
|
||||
<tbody>
|
||||
<!--{$rank = 1}-->
|
||||
<!--@foreach($referer_status as $no => $val)-->
|
||||
<h4 class="xeAdmin">{$lang->ranking}</h4>
|
||||
<table cellspacing="0" class="rowTable">
|
||||
<tbody>
|
||||
<!--{$rank = 1}-->
|
||||
<!--@foreach($referer_status as $no => $val)-->
|
||||
<tr class="row{$cycle_idx}">
|
||||
<td class="number center">{$rank} </td>
|
||||
<td>{$val->host}</td>
|
||||
<td class="wide">{$val->host}</td>
|
||||
<td class="number center">{$val->count}</td>
|
||||
<td class="delete center"><a href="{getUrl('act','dispRefererAdminDeleteStat','host',$val->host)}">{$lang->cmd_delete}</a></td>
|
||||
</td>
|
||||
<!--{$rank += 1} -->
|
||||
<!--@end-->
|
||||
</tbody>
|
||||
<td class="delete center"><a href="{getUrl('act','dispRefererAdminDeleteStat','host',$val->host)}" title="{$lang->cmd_delete}" class="buttonSet buttonDelete"><span>{$lang->cmd_delete}</span></a></td>
|
||||
</tr>
|
||||
<!--{$rank += 1} -->
|
||||
<!--@end-->
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue