mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-31 17:19:59 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1589 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
3b9f07a90d
commit
7461841819
99 changed files with 1260 additions and 58 deletions
52
modules/board/skins/xe_list/comment.html
Normal file
52
modules/board/skins/xe_list/comment.html
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
<!--@if($document->comment_list)-->
|
||||
<ul id="reply">
|
||||
|
||||
<!--@foreach($document->comment_list as $key => $val)-->
|
||||
<a name="comment_{$key}"></a>
|
||||
|
||||
<!--@if($val->depth)-->
|
||||
<li style="margin-left:{($val->depth-1)*1.3 + 1.7}em" class="replyIndent">
|
||||
<!--@else-->
|
||||
<li>
|
||||
<!--@end-->
|
||||
|
||||
{$val->content}
|
||||
|
||||
<div class="replyOption">
|
||||
<!--@if($val->is_granted || !$val->member_srl)-->
|
||||
<a href="{getUrl('act','dispBoardDeleteComment','comment_srl',$val->comment_srl)}"><img src="./images/{$module_info->colorset}/buttonDeleteX.gif" alt="{$lang->cmd_reply}" width="12" height="13" /></a>
|
||||
<a href="{getUrl('act','dispBoardModifyComment','comment_srl',$val->comment_srl)}"><img src="./images/{$module_info->colorset}/buttonModifyE.gif" alt="{$lang->cmd_modify}" width="20" height="18" /></a>
|
||||
<!--@end-->
|
||||
<a href="{getUrl('act','dispBoardReplyComment','comment_srl',$val->comment_srl)}"><img src="./images/{$module_info->colorset}/buttonReply.gif" alt="{$lang->cmd_reply}" width="20" height="18" /></a>
|
||||
</div>
|
||||
|
||||
<address>
|
||||
<span class="member_{$val->member_srl}">{htmlspecialchars($val->nick_name)}</span>
|
||||
<span class="date">
|
||||
{zdate($val->regdate, "Y.m.d H:i")}
|
||||
<!--@if($grant->is_admin)-->
|
||||
({$val->ipaddress})
|
||||
<!--@end-->
|
||||
</span>
|
||||
</address>
|
||||
|
||||
<!--@if($val->uploaded_count && $val->uploaded_list)-->
|
||||
<div class="fileAttached">
|
||||
<h5>{$lang->uploaded_file} : </h5>
|
||||
<ul>
|
||||
<!--@foreach($document->uploaded_list as $key => $file)-->
|
||||
<li><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} ({FileHandler::filesize($file->file_size)})({number_format($file->download_count)})</a></li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
</div>
|
||||
<!--@end-->
|
||||
</li>
|
||||
<!--@end-->
|
||||
|
||||
</ul>
|
||||
<!--@end-->
|
||||
|
||||
<!-- 댓글 입력 폼 -->
|
||||
<!--@if($grant->write_comment && $document->lock_comment == 'N')-->
|
||||
<!--#include("./comment_form.html")-->
|
||||
<!--@end-->
|
||||
Loading…
Add table
Add a link
Reference in a new issue