mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-09 12:02:24 +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
|
|
@ -1,40 +1,31 @@
|
|||
{@ $member_title = $lang->cmd_view_own_document }
|
||||
<!--#include("./common_header.html")-->
|
||||
|
||||
<!-- 정보 -->
|
||||
<div class="boardInformation">
|
||||
Total : <strong>{number_format($total_count)}</strong>,
|
||||
Page <strong>{number_format($page)}</strong>/{number_format($total_page)}
|
||||
<h3>{$member_title = $lang->cmd_view_own_document }</h3>
|
||||
|
||||
<!-- 모듈 선택 -->
|
||||
<div class="fr gap1">
|
||||
<a href="{getUrl('','module','module','act','dispModuleSelectList','id','target_module','type','single')}" onclick="popopen(this.href,'ModuleSelect');return false;" class="small button green"><span>{$lang->cmd_find_module}</span></a>
|
||||
<!--@if($selected_module_srl)--><a href="{getUrl('selected_module_srl','')}" class="small button red"><span>{$lang->cmd_cancel}</span></a><!--@end-->
|
||||
</div>
|
||||
|
||||
<!-- 목록 -->
|
||||
<table cellspacing="0" class="list">
|
||||
<table cellspacing="0" class="colTable">
|
||||
<caption>Total : {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col"><div>{$lang->no}</div></th>
|
||||
<th scope="col" class="wide">
|
||||
<div>
|
||||
<select name="module_srl" class="mid_list" id="selected_module_srl">
|
||||
<option value="">{$lang->total}</option>
|
||||
<!--@foreach($mid_list as $key => $val)-->
|
||||
<option value="{$val->module_srl}" <!--@if($module_srl == $val->module_srl)-->selected="selected"<!--@end-->>{$val->browser_title}</option>
|
||||
<!--@end-->
|
||||
</select><a href="#" onclick="location.href=current_url.setQuery('selected_module_srl',xGetElementById('selected_module_srl').options[xGetElementById('selected_module_srl').selectedIndex].value);return false;"><img src="./images/button_go.gif" border="0" alt="" class="button_go" /></a>
|
||||
</div>
|
||||
</th>
|
||||
<th scope="col"><div>{$lang->readed_count}</div></th>
|
||||
<th scope="col"><div>{$lang->voted_count}</div></th>
|
||||
<th scope="col"><div>{$lang->date}</div></th>
|
||||
<th class="title"><div>{$lang->no}</div></th>
|
||||
<th class="title" class="wide"><div>{$lang->title}</div></th>
|
||||
<th class="title"><div>{$lang->readed_count}</div></th>
|
||||
<th class="title"><div>{$lang->voted_count}</div></th>
|
||||
<th class="title"><div>{$lang->date}</div></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<!--@foreach($document_list as $no => $oDocument)-->
|
||||
<tr class="bg{($no+1)%2+1}">
|
||||
<td class="num">{$no}</td>
|
||||
<td class="title">
|
||||
<a href="{getUrl('','mid',$module_list[$oDocument->get('module_srl')]->mid)}" onclick="window.open(this.href);return false">{htmlspecialchars($module_list[$oDocument->get('module_srl')]->browser_title)}</a> -
|
||||
<tr>
|
||||
<td>{$no}</td>
|
||||
<td class="wide">
|
||||
<a href="{getUrl('','document_srl',$oDocument->document_srl)}" onclick="window.open(this.href);return false;">{$oDocument->getTitleText()}</a>
|
||||
|
||||
<!--@if($oDocument->getCommentCount())-->
|
||||
[{$oDocument->getCommentCount()}]
|
||||
<!--@end-->
|
||||
|
|
@ -43,19 +34,19 @@
|
|||
[{$oDocument->getTrackbackCount()}]
|
||||
<!--@end-->
|
||||
</td>
|
||||
<td class="num">{$oDocument->get('readed_count')}</td>
|
||||
<td class="num">{$oDocument->get('voted_count')}</td>
|
||||
<td class="registDate">{$oDocument->getRegdate("Y-m-d")}</td>
|
||||
<td>{$oDocument->get('readed_count')}</td>
|
||||
<td>{$oDocument->get('voted_count')}</td>
|
||||
<td class="nowrap">{$oDocument->getRegdate("Y-m-d")}</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
<tr>
|
||||
<th class="button" colspan="5">
|
||||
<a href="{getUrl('act','','selected_module_srl','')}" class="button"><span>{$lang->cmd_back}</span></a>
|
||||
</th>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<!-- 버튼 -->
|
||||
<div class="tRight gap1">
|
||||
<a href="{getUrl('act','','selected_module_srl','')}" class="button"><span>{$lang->cmd_back}</span></a>
|
||||
</div>
|
||||
|
||||
<!-- 페이지 네비게이션 -->
|
||||
<div class="pagination a1">
|
||||
<a href="{getUrl('page','','module_srl','')}" class="prevEnd">{$lang->first_page}</a>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue