mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-02-01 01:29:58 +09:00
issueTracker 기본 스킨 변경
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6553 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
f9b2a95af6
commit
36e7ebf4c2
64 changed files with 1197 additions and 1039 deletions
57
modules/issuetracker/skins/xe_issuetracker/comment.html
Normal file
57
modules/issuetracker/skins/xe_issuetracker/comment.html
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
{@ $histories = $oIssue->get('histories') }
|
||||
<!--@if($histories)-->
|
||||
<hr class="hr" />
|
||||
<div class="feedbackList" id="reply">
|
||||
|
||||
<div class="replyList">
|
||||
<!--@foreach($histories as $history)-->
|
||||
<div class="item" id="comment_{$history->history_srl}">
|
||||
<div class="indent">
|
||||
<div class="itemAside">
|
||||
<h4 class="header">
|
||||
<a href="#popup_menu_area" class="member_{$history->member_srl}" onclick="return false">{$history->nick_name}</a>
|
||||
</h4>
|
||||
|
||||
<p class="meta">
|
||||
{zdate($history->regdate,'Y.m.d')}
|
||||
{zdate($history->regdate,'H:i:s')}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="itemContent">
|
||||
<ul>
|
||||
<!--@if($history->history && count($history->history))-->
|
||||
<li>
|
||||
<ol>
|
||||
<!--@foreach($history->history as $key => $val)-->
|
||||
<li>{$val}</li>
|
||||
<!--@end-->
|
||||
</ol>
|
||||
</li>
|
||||
<!--@end-->
|
||||
<!--@if($history->content)-->
|
||||
<li class="content">{nl2br($history->content)}</li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--@end-->
|
||||
</div>
|
||||
|
||||
<!--@if($oIssue->comment_page_navigation)-->
|
||||
<div class="pagination">
|
||||
<a href="{getUrl('cpage',1)}#comment" class="prevEnd">{$lang->first_page}</a>
|
||||
<!--@while($page_no = $oIssue->comment_page_navigation->getNextPage())-->
|
||||
<!--@if($cpage == $page_no)-->
|
||||
<strong>{$page_no}</strong>
|
||||
<!--@else-->
|
||||
<a href="{getUrl('cpage',$page_no)}#comment">{$page_no}</a>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
<a href="{getUrl('cpage',$oIssue->comment_page_navigation->last_page)}#comment" class="nextEnd">{$lang->last_page}</a>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
</div>
|
||||
<!--@end-->
|
||||
Loading…
Add table
Add a link
Reference in a new issue