이슈트래커 : 본문 첨부파일 목록 표시 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6504 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
bnu 2009-06-09 12:45:24 +00:00
parent 4f83f96c22
commit c89a11464b
2 changed files with 36 additions and 14 deletions

View file

@ -148,6 +148,13 @@ div.editor table { width:95%; }
.viewIssue div.button ul li { list-style:none; color:#AAAAAA; float:left; margin-left:10px; } .viewIssue div.button ul li { list-style:none; color:#AAAAAA; float:left; margin-left:10px; }
.viewIssue div.button ul li a { text-decoration:none; color:#666666; font-weight:bold; } .viewIssue div.button ul li a { text-decoration:none; color:#666666; font-weight:bold; }
.viewIssue .fileAttached {overflow:hidden;}
.viewIssue .fileAttached h5 { font-weight:normal; color:#999999; font-size:1em; line-height:22px; }
.viewIssue .fileAttached ul { padding:0; margin:0; }
.viewIssue .fileAttached li { padding-left:15px; display:block; float:left; white-space:nowrap; list-style:none; margin:0 10px 5px 0; }
.viewIssue .fileAttached li a { text-decoration:none; font-size:.9em; white-space:nowrap; color:#444444; }
.viewIssue .fileAttached li a:visited { color:#777777;}
fieldset.history { border:1px solid #CCCCCC; margin-top:10px; } fieldset.history { border:1px solid #CCCCCC; margin-top:10px; }
fieldset.history legend { padding:0 10px; } fieldset.history legend { padding:0 10px; }
fieldset.history legend span.date { font-size:8pt; font-family:tahoma; color:#AAAAAA; margin-right:10px; } fieldset.history legend span.date { font-size:8pt; font-family:tahoma; color:#AAAAAA; margin-right:10px; }

View file

@ -66,6 +66,21 @@
<tr> <tr>
<td colspan="4" class="description">{$oIssue->getContent(false, true)}</td> <td colspan="4" class="description">{$oIssue->getContent(false, true)}</td>
</tr> </tr>
<tr>
<td colspan="4">
<!--@if($oIssue->hasUploadedFiles())-->
<div class="fileAttached">
{@ $uploaded_list = $oIssue->getUploadedFiles() }
<ul>
<!--@foreach($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 class="clear"></div>
</div>
<!--@end-->
</td>
</tr>
<!--@else--> <!--@else-->
<tr> <tr>
<td colspan="4" class="inputPassword"> <td colspan="4" class="inputPassword">