18 |
18 |
|
19 |
19 |
<table width="100%">
|
20 |
20 |
<tr>
|
21 |
|
<td style="width:15%"><b><%=l(:field_status)%> :</b></td><td style="width:35%"><%= @issue.status.name %></td>
|
22 |
|
<td style="width:15%"><b><%=l(:field_start_date)%> :</b></td><td style="width:35%"><%= format_date(@issue.start_date) %></td>
|
|
21 |
<td style="width:15%"><b><%=l(:field_status)%>:</b></td><td style="width:35%"><%= @issue.status.name %></td>
|
|
22 |
<td style="width:15%"><b><%=l(:field_start_date)%>:</b></td><td style="width:35%"><%= format_date(@issue.start_date) %></td>
|
23 |
23 |
</tr>
|
24 |
24 |
<tr>
|
25 |
|
<td><b><%=l(:field_priority)%> :</b></td><td><%= @issue.priority.name %></td>
|
26 |
|
<td><b><%=l(:field_due_date)%> :</b></td><td><%= format_date(@issue.due_date) %></td>
|
|
25 |
<td><b><%=l(:field_priority)%>:</b></td><td><%= @issue.priority.name %></td>
|
|
26 |
<td><b><%=l(:field_due_date)%>:</b></td><td><%= format_date(@issue.due_date) %></td>
|
27 |
27 |
</tr>
|
28 |
28 |
<tr>
|
29 |
|
<td><b><%=l(:field_assigned_to)%> :</b></td><td><%= @issue.assigned_to ? link_to_user(@issue.assigned_to) : "-" %></td>
|
30 |
|
<td><b><%=l(:field_done_ratio)%> :</b></td><td><%= progress_bar @issue.done_ratio, :width => '80px', :legend => "#{@issue.done_ratio}%" %></td>
|
|
29 |
<td><b><%=l(:field_assigned_to)%>:</b></td><td><%= @issue.assigned_to ? link_to_user(@issue.assigned_to) : "-" %></td>
|
|
30 |
<td><b><%=l(:field_done_ratio)%>:</b></td><td><%= progress_bar @issue.done_ratio, :width => '80px', :legend => "#{@issue.done_ratio}%" %></td>
|
31 |
31 |
</tr>
|
32 |
32 |
<tr>
|
33 |
|
<td><b><%=l(:field_category)%> :</b></td><td><%=h @issue.category ? @issue.category.name : "-" %></td>
|
|
33 |
<td><b><%=l(:field_category)%>:</b></td><td><%=h @issue.category ? @issue.category.name : "-" %></td>
|
34 |
34 |
<% if User.current.allowed_to?(:view_time_entries, @project) %>
|
35 |
|
<td><b><%=l(:label_spent_time)%> :</b></td>
|
|
35 |
<td><b><%=l(:label_spent_time)%>:</b></td>
|
36 |
36 |
<td><%= @issue.spent_hours > 0 ? (link_to lwr(:label_f_hour, @issue.spent_hours), {:controller => 'timelog', :action => 'details', :project_id => @project, :issue_id => @issue}, :class => 'icon icon-time') : "-" %></td>
|
37 |
37 |
<% end %>
|
38 |
38 |
</tr>
|
39 |
39 |
<tr>
|
40 |
|
<td><b><%=l(:field_fixed_version)%> :</b></td><td><%= @issue.fixed_version ? link_to_version(@issue.fixed_version) : "-" %></td>
|
|
40 |
<td><b><%=l(:field_fixed_version)%>:</b></td><td><%= @issue.fixed_version ? link_to_version(@issue.fixed_version) : "-" %></td>
|
41 |
41 |
<% if @issue.estimated_hours %>
|
42 |
|
<td><b><%=l(:field_estimated_hours)%> :</b></td><td><%= lwr(:label_f_hour, @issue.estimated_hours) %></td>
|
|
42 |
<td><b><%=l(:field_estimated_hours)%>:</b></td><td><%= lwr(:label_f_hour, @issue.estimated_hours) %></td>
|
43 |
43 |
<% end %>
|
44 |
44 |
</tr>
|
45 |
45 |
<tr>
|
46 |
46 |
<% n = 0
|
47 |
47 |
for custom_value in @custom_values %>
|
48 |
|
<td valign="top"><b><%= custom_value.custom_field.name %> :</b></td><td valign="top"><%= simple_format(h(show_value(custom_value))) %></td>
|
|
48 |
<td valign="top"><b><%= custom_value.custom_field.name %>:</b></td><td valign="top"><%= simple_format(h(show_value(custom_value))) %></td>
|
49 |
49 |
<% n = n + 1
|
50 |
50 |
if (n > 1)
|
51 |
51 |
n = 0 %>
|