git-svn-id: http://xe-core.googlecode.com/svn/trunk@64 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-02-15 08:20:52 +00:00
parent 5bb12751f3
commit de0318dda0
27 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,53 @@
<!--#include("header.html")-->
<!-- 댓글 정보 출력 -->
<div>
{$lang->comment} : {count($comment_list)}
</div>
<!-- 댓글 출력 -->
<div>
<!-- 댓글 목록 -->
<!--@if($comment_list)-->
<!--@foreach($comment_list as $key => $val)-->
<a name="comment_{$key}"></a>
<div style="margin-left:{$val->depth*15}px" >
<table>
<col width="120" />
<col width="*" />
<tr>
<th>{$lang->date}</th>
<td>{zdate($val->regdate, "Y-m-d H:i:s")}</td>
</tr>
<tr>
<th>{$lang->user_name}</th>
<td>{$val->user_name}</td>
</tr>
<tr>
<th>{$lang->content}</th>
<td height="100" valign="top">{nl2br($val->content)}</td>
</tr>
<tr>
<th>ipaddress</th>
<td>{$val->ipaddress}</td>
</tr>
<tr>
<td colspan="2">
<a href="{getUrl('act','dispCommentModifyForm','comment_srl',$val->comment_srl)}">[{$lang->cmd_modify}]</a>
<a href="{getUrl('act','dispCommentReplyForm','comment_srl',$val->comment_srl)}">[{$lang->cmd_reply}]</a>
<a href="{getUrl('act','dispCommentDeleteForm','comment_srl',$val->comment_srl)}">[{$lang->cmd_delete}]</a>
</td>
</tr>
</table>
</div>
<!--@end-->
<!--@end-->
<!-- 댓글 입력 폼 -->
<!--@if($document->lock_comment == 'N')-->
<!--#include("./comment_form.html")-->
<!--@end-->
</div>