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

This commit is contained in:
zero 2008-09-09 05:17:05 +00:00
parent 5cccd30a27
commit d2f4b14a22
2 changed files with 9 additions and 11 deletions

View file

@ -60,12 +60,12 @@ table.milestones tbody tr.title td { background-color:#EFEFEF; }
table.milestones tbody td { padding:5px; text-align:center; border-bottom:1px solid #EEEEEE; }
table.milestones tbody td.title { font-weight:bold; text-align:left; }
table.milestones tbody td.title a { text-decoration:none; color:#444444; }
table.milestones tbody td.deadline { color:#0A6E03; font-family:tahoma; font-size:9pt; }
table.milestones tbody td.deadline { color:#0A6E03; font-family:tahoma; font-size:9pt; white-space:nowrap;}
table.milestones tbody td.status a { text-decoration:none; font-family:tahoma; font-size:8pt; font-weight:bold;}
table.milestones tbody td.total a { text-decoration:none; color:#444444; font-family:tahoma; font-size:8pt; font-weight:bold;}
table.milestones tbody td.description { text-align:left; padding-left:10px; border-bottom:1px solid #333333; }
table.milestones tbody td.completed { text-decoration:line-through; }
table.milestones tbody td.released_date { text-align:right; color:#EF4B18; font-family:tahoma; font-size:9pt; }
table.milestones tbody td.released_date { text-align:right; color:#EF4B18; font-family:tahoma; font-size:9pt; white-space:nowrap;}
/* download */
table.downloads { width:100%; clear:both; border:0; border-spacing:0; table-layout:fixed; border:1px solid #333333;}

View file

@ -3,8 +3,8 @@
<table class="milestones" cellspacing="0">
<thead>
<tr>
{@ $col_count = 4 }
<th colspan="2">{$lang->milestone}</th>
{@ $col_count = 3 }
<th>{$lang->completed_date}</th>
<th>{$lang->deadline}</th>
<!--@foreach($lang->status_list as $k => $v)-->
{@ $col_count += 1 }
@ -20,15 +20,13 @@
{@ $val->description = $lang->not_assigned_description}
<!--@end-->
<tr class="title">
<td class="title <!--@if($val->is_completed=='Y')-->completed<!--@end-->" <!--@if($val->is_completed!='Y')-->colspan="2"<!--@end-->>
<td class="title <!--@if($val->is_completed=='Y')-->completed<!--@end-->" colspan="{$col_count}" >
<a href="{getUrl('','mid',$mid,'act','dispIssuetrackerViewIssue','milestone_srl', $val->milestone_srl)}">{$val->title}</a>
</td>
<!--@if($val->is_completed == 'Y')-->
<td class="released_date">
{zdate($val->released_date, "Y-m-d")}
</td>
<!--@end-->
<td class="deadline">{zdate($val->deadline, 'Y-m-d')}</td>
</tr>
<tr>
<td class="released_date">{zdate($val->released_date, "Y-m-d")}&nbsp;</td>
<td class="deadline">{zdate($val->deadline, 'Y-m-d')}&nbsp;</td>
<!--@foreach($lang->status_list as $k => $v)-->
<td class="status issue_{$k}"> <a href="{getUrl('','mid',$mid,'act','dispIssuetrackerViewIssue','milestone_srl', $val->milestone_srl,'status[]',$k)}">{number_format($val->issues[$k])}</a></td>
<!--@end-->