diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index 04463709..57fbd05c 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -18,34 +18,34 @@
<%=l(:field_status)%> : | <%= @issue.status.name %> | -<%=l(:field_start_date)%> : | <%= format_date(@issue.start_date) %> | +<%=l(:field_status)%>: | <%= @issue.status.name %> | +<%=l(:field_start_date)%>: | <%= format_date(@issue.start_date) %> |
<%=l(:field_priority)%> : | <%= @issue.priority.name %> | -<%=l(:field_due_date)%> : | <%= format_date(@issue.due_date) %> | +<%=l(:field_priority)%>: | <%= @issue.priority.name %> | +<%=l(:field_due_date)%>: | <%= format_date(@issue.due_date) %> |
<%=l(:field_assigned_to)%> : | <%= @issue.assigned_to ? link_to_user(@issue.assigned_to) : "-" %> | -<%=l(:field_done_ratio)%> : | <%= progress_bar @issue.done_ratio, :width => '80px', :legend => "#{@issue.done_ratio}%" %> | +<%=l(:field_assigned_to)%>: | <%= @issue.assigned_to ? link_to_user(@issue.assigned_to) : "-" %> | +<%=l(:field_done_ratio)%>: | <%= progress_bar @issue.done_ratio, :width => '80px', :legend => "#{@issue.done_ratio}%" %> |
<%=l(:field_category)%> : | <%=h @issue.category ? @issue.category.name : "-" %> | +<%=l(:field_category)%>: | <%=h @issue.category ? @issue.category.name : "-" %> | <% if User.current.allowed_to?(:view_time_entries, @project) %> -<%=l(:label_spent_time)%> : | +<%=l(:label_spent_time)%>: | <%= @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') : "-" %> | <% end %>|
<%=l(:field_fixed_version)%> : | <%= @issue.fixed_version ? link_to_version(@issue.fixed_version) : "-" %> | +<%=l(:field_fixed_version)%>: | <%= @issue.fixed_version ? link_to_version(@issue.fixed_version) : "-" %> | <% if @issue.estimated_hours %> -<%=l(:field_estimated_hours)%> : | <%= lwr(:label_f_hour, @issue.estimated_hours) %> | +<%=l(:field_estimated_hours)%>: | <%= lwr(:label_f_hour, @issue.estimated_hours) %> | <% end %>
<%= custom_value.custom_field.name %> : | <%= simple_format(h(show_value(custom_value))) %> | +<%= custom_value.custom_field.name %>: | <%= simple_format(h(show_value(custom_value))) %> | <% n = n + 1 if (n > 1) n = 0 %>