관리자 페이지 패키지별 UI 적용을 위한 1차 작업 마무리

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4616 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-10-15 11:10:08 +00:00
parent 856ab513ec
commit ba4e9e26e2
248 changed files with 3520 additions and 3424 deletions

View file

@ -1,5 +0,0 @@
.refererLeft { width:260px; float:left; margin-top:10px;}
.refererRight { width:500px; float:left; margin-left:20px;margin-top:10px; }
.refererRight .refererList { table-layout:fixed; }
.refererRight .refererList .refererUrl { white-space:nowrap; overflow:hidden; }

View file

@ -6,19 +6,18 @@
<form action="./" method="get" onsubmit="return procFilter(this, delete_stat)">
<input type="hidden" name="host" value="{$host}" />
<table cellspacing="0" class="adminTable">
<col width="150" />
<col />
<table cellspacing="0" class="adminTable topGap">
<caption>{$lang->confirm_delete}</caption>
<tr>
<th scope="row">Host Name</th>
<th scope="row"><div>Host Name</div></th>
<td>{$host}</td>
</tr>
<tr>
<td colspan="2" class="right">
<a href="{getUrl('act','dispRefererAdminIndex')}" class="button"><span>{$lang->cmd_back}</span></a>
<span class="button"><input type="submit" value="{$lang->cmd_delete}" /></span>
</td>
</tr>
</table>
<div class="tRight gap1">
<a href="{getUrl('act','dispRefererAdminIndex')}" class="button"><span>{$lang->cmd_back}</span></a>
<span class="button"><input type="submit" value="{$lang->cmd_delete}" /></span>
</div>
</form>

View file

@ -2,54 +2,19 @@
<h3>{$lang->referer} <span class="gray">{$lang->cmd_management}</span></h3>
<div class="refererLeft">
<div class="tableSummaryType1">{$lang->ranking}</div>
<div class="tableSummaryType1">
<table cellspacing="0" class="adminTable">
<col width="30" />
<col />
<col width="50" />
<col width="50" />
<tbody>
<!--{$rank = 1}-->
<!--@foreach($referer_status as $no => $val)-->
<tr>
<td class="tahoma">{$rank} </td>
<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">{$val->count}</td>
<td class="tahoma red"><a href="{getUrl('act','dispRefererAdminDeleteStat','host',$val->host)}">{$lang->cmd_delete}</a></td>
</td>
<!--{$rank += 1} -->
<td class="tahoma refererUrl"><a href="{$val->url}">{$val->url}</a></td>
</tr>
<!--@end-->
</tbody>
</table>
</div>
</div>
<div class="refererRight">
<div class="tableSummaryType1">
Total <strong>{number_format($total_count)}</strong>, Page <strong>{number_format($page)}</strong>/{number_format($total_page)}
</div>
<div>
<table cellspacing="0" class="adminTable refererList">
<col width="80" />
<col width="150" />
<col />
<tbody>
<!--@foreach($referer_list as $no => $val)-->
<tr>
<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>
</tbody>
</table>
<!-- 페이지 네비게이션 -->
<div class="pageNavigation">
@ -64,3 +29,21 @@
<a href="{getUrl('page',$page_navigation->last_page,'module_srl','')}" class="goToLast"><img src="../../admin/tpl/images/bottomGotoLast.gif" alt="{$lang->last_page}" width="7" height="5" /></a>
</div>
</div>
<div class="adminRightExtra topGap">
<table cellspacing="0" class="adminTable">
<caption>{$lang->ranking}</caption>
<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="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>
</table>
</div>