mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-24 05:39:58 +09:00
이슈트래커 : 본문 첨부파일 목록 표시 추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6504 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
4f83f96c22
commit
c89a11464b
2 changed files with 36 additions and 14 deletions
|
|
@ -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 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 legend { padding:0 10px; }
|
||||
fieldset.history legend span.date { font-size:8pt; font-family:tahoma; color:#AAAAAA; margin-right:10px; }
|
||||
|
|
|
|||
|
|
@ -66,6 +66,21 @@
|
|||
<tr>
|
||||
<td colspan="4" class="description">{$oIssue->getContent(false, true)}</td>
|
||||
</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-->
|
||||
<tr>
|
||||
<td colspan="4" class="inputPassword">
|
||||
|
|
@ -122,7 +137,7 @@
|
|||
<fieldset class="history">
|
||||
<legend>
|
||||
<span class="date">{zdate($history->regdate, "Y-m-d H:i")}</span>
|
||||
<span class="member_{$history->member_srl}">{$history->nick_name}</span>
|
||||
<span class="member_{$history->member_srl}">{$history->nick_name}</span>
|
||||
</legend>
|
||||
<ul>
|
||||
<!--@if($history->history && count($history->history))-->
|
||||
|
|
@ -157,7 +172,7 @@
|
|||
<th><label for="inputMilestone">{$lang->milestone} :</label></th>
|
||||
<td>
|
||||
<select name="milestone_srl" id="inputMilestone">
|
||||
<option value="0">{$lang->milestone}</option>
|
||||
<option value="0">{$lang->milestone}</option>
|
||||
<!--@foreach($project->milestones as $val)-->
|
||||
<option value="{$val->milestone_srl}" <!--@if($oIssue->get('milestone_srl')==$val->milestone_srl)-->selected="selected"<!--@end-->>{$val->title}</option>
|
||||
<!--@end-->
|
||||
|
|
@ -166,9 +181,9 @@
|
|||
<th><label for="inputPriority">{$lang->priority} :</label></th>
|
||||
<td>
|
||||
<select name="priority_srl" id="inputPriority">
|
||||
<option value="">{$lang->priority}</option>
|
||||
<option value="">{$lang->priority}</option>
|
||||
<!--@foreach($project->priorities as $key => $val)-->
|
||||
<option value="{$val->priority_srl}" <!--@if($val->priority_srl==$oIssue->get('priority_srl'))-->selected="selected"<!--@end-->>{$val->title}</option>
|
||||
<option value="{$val->priority_srl}" <!--@if($val->priority_srl==$oIssue->get('priority_srl'))-->selected="selected"<!--@end-->>{$val->title}</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
</td>
|
||||
|
|
@ -177,18 +192,18 @@
|
|||
<th><label for="inputType">{$lang->type} :</label></th>
|
||||
<td>
|
||||
<select name="type_srl" id="inputType">
|
||||
<option value="">{$lang->type}</option>
|
||||
<option value="">{$lang->type}</option>
|
||||
<!--@foreach($project->types as $key => $val)-->
|
||||
<option value="{$val->type_srl}" <!--@if($val->type_srl==$oIssue->get('type_srl'))-->selected="selected"<!--@end-->>{$val->title}</option>
|
||||
<option value="{$val->type_srl}" <!--@if($val->type_srl==$oIssue->get('type_srl'))-->selected="selected"<!--@end-->>{$val->title}</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
</td>
|
||||
<th><label for="inputComponent">{$lang->component} :</label></th>
|
||||
<td>
|
||||
<select name="component_srl" id="inputComponent">
|
||||
<option value="">{$lang->component}</option>
|
||||
<option value="">{$lang->component}</option>
|
||||
<!--@foreach($project->components as $key => $val)-->
|
||||
<option value="{$val->component_srl}" <!--@if($val->component_srl==$oIssue->get('component_srl'))-->selected="selected"<!--@end-->>{$val->title}</option>
|
||||
<option value="{$val->component_srl}" <!--@if($val->component_srl==$oIssue->get('component_srl'))-->selected="selected"<!--@end-->>{$val->title}</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
</td>
|
||||
|
|
@ -198,17 +213,17 @@
|
|||
<th><label for="inputPackage">{$lang->occured_version} :</label></th>
|
||||
<td colspan="3">
|
||||
<select name="package_srl" id="inputPackage">
|
||||
<option value="">{$lang->package}</option>
|
||||
<option value="">{$lang->package}</option>
|
||||
<!--@foreach($project->packages as $key => $val)-->
|
||||
<option value="{$val->package_srl}" <!--@if($val->package_srl==$oIssue->get('package_srl'))-->selected="selected"<!--@end-->>{$val->title}</option>
|
||||
<option value="{$val->package_srl}" <!--@if($val->package_srl==$oIssue->get('package_srl'))-->selected="selected"<!--@end-->>{$val->title}</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
<select name="occured_version_srl">
|
||||
<option value="">{$lang->release}</option>
|
||||
<option value="">{$lang->release}</option>
|
||||
<!--@foreach($project->packages as $key => $val)-->
|
||||
<!--@foreach($project->releases as $k => $v)-->
|
||||
<!--@if($val->package_srl == $v->package_srl)-->
|
||||
<option value="{$v->release_srl}" <!--@if($v->release_srl==$oIssue->get('occured_version_srl'))-->selected="selected"<!--@end-->>{$v->title}</option>
|
||||
<option value="{$v->release_srl}" <!--@if($v->release_srl==$oIssue->get('occured_version_srl'))-->selected="selected"<!--@end-->>{$v->title}</option>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
|
|
@ -224,7 +239,7 @@
|
|||
<input type="radio" name="action" value="resolve" id="actResolve" /><label for="actResolve">{$lang->cmd_resolve_as}</label>
|
||||
<select name="status" onchange="xGetElementById('actResolve').checked='checked'">
|
||||
<!--@foreach($lang->status_list as $key => $val)-->
|
||||
<option value="{$key}" <!--@if($oIssue->get('status')==$key)-->selected="selected"<!--@end-->>{$val}</option>
|
||||
<option value="{$key}" <!--@if($oIssue->get('status')==$key)-->selected="selected"<!--@end-->>{$val}</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
</li>
|
||||
|
|
@ -232,7 +247,7 @@
|
|||
<input type="radio" name="action" value="reassign" id="actReassign" /><label for="actReassign">{$lang->cmd_reassign}</label>
|
||||
<select name="assignee_srl" onchange="xGetElementById('actReassign').checked='checked'">
|
||||
<!--@foreach($commiters as $key => $val)-->
|
||||
<option value="{$val->member_srl}" <!--@if($oIssue->get('assignee_srl')==$val->member_srl)-->selected="selected"<!--@end-->>{$val->nick_name} ({$val->user_id})</option>
|
||||
<option value="{$val->member_srl}" <!--@if($oIssue->get('assignee_srl')==$val->member_srl)-->selected="selected"<!--@end-->>{$val->nick_name} ({$val->user_id})</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
</li>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue