##// END OF EJS Templates
replace tabs to spaces at app/views/versions/_overview.html.erb...
Toshi MARUYAMA -
r7275:8257e6b62b98
parent child
Show More
@@ -1,27 +1,27
1 1 <% if version.completed? %>
2 2 <p><%= format_date(version.effective_date) %></p>
3 3 <% elsif version.effective_date %>
4 4 <p><strong><%= due_date_distance_in_words(version.effective_date) %></strong> (<%= format_date(version.effective_date) %>)</p>
5 5 <% end %>
6 6
7 7 <p><%=h version.description %></p>
8 8 <ul>
9 <% version.custom_values.each do |custom_value| %>
10 <% if !custom_value.value.blank? %>
11 <li><%=h custom_value.custom_field.name %>: <%=h show_value(custom_value) %></li>
12 <% end %>
13 <% end %>
9 <% version.custom_values.each do |custom_value| %>
10 <% if !custom_value.value.blank? %>
11 <li><%=h custom_value.custom_field.name %>: <%=h show_value(custom_value) %></li>
12 <% end %>
13 <% end %>
14 14 </ul>
15 15
16 16 <% if version.fixed_issues.count > 0 %>
17 17 <%= progress_bar([version.closed_pourcent, version.completed_pourcent], :width => '40em', :legend => ('%0.0f%' % version.completed_pourcent)) %>
18 18 <p class="progress-info">
19 19 <%= link_to_if(version.closed_issues_count > 0, l(:label_x_closed_issues_abbr, :count => version.closed_issues_count), :controller => 'issues', :action => 'index', :project_id => version.project, :status_id => 'c', :fixed_version_id => version, :set_filter => 1) %>
20 20 (<%= '%0.0f' % (version.closed_issues_count.to_f / version.fixed_issues.count * 100) %>%)
21 21 &#160;
22 22 <%= link_to_if(version.open_issues_count > 0, l(:label_x_open_issues_abbr, :count => version.open_issues_count), :controller => 'issues', :action => 'index', :project_id => version.project, :status_id => 'o', :fixed_version_id => version, :set_filter => 1) %>
23 23 (<%= '%0.0f' % (version.open_issues_count.to_f / version.fixed_issues.count * 100) %>%)
24 24 </p>
25 25 <% else %>
26 26 <p><em><%= l(:label_roadmap_no_issues) %></em></p>
27 27 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now