To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / versions / _overview.html.erb @ 912:5e80956cc792
History | View | Annotate | Download (1.53 KB)
| 1 | 0:513646585e45 | Chris | <% if version.completed? %>
|
|---|---|---|---|
| 2 | <p><%= format_date(version.effective_date) %></p> |
||
| 3 | <% elsif version.effective_date %>
|
||
| 4 | <p><strong><%= due_date_distance_in_words(version.effective_date) %></strong> (<%= format_date(version.effective_date) %>)</p> |
||
| 5 | <% end %>
|
||
| 6 | |||
| 7 | <p><%=h version.description %></p> |
||
| 8 | <ul>
|
||
| 9 | 909:cbb26bc654de | Chris | <% 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 | 0:513646585e45 | Chris | </ul>
|
| 15 | |||
| 16 | <% if version.fixed_issues.count > 0 %>
|
||
| 17 | <%= progress_bar([version.closed_pourcent, version.completed_pourcent], :width => '40em', :legend => ('%0.0f%' % version.completed_pourcent)) %>
|
||
| 18 | <p class="progress-info"> |
||
| 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 | (<%= '%0.0f' % (version.closed_issues_count.to_f / version.fixed_issues.count * 100) %>%)
|
||
| 21 |  
|
||
| 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 | (<%= '%0.0f' % (version.open_issues_count.to_f / version.fixed_issues.count * 100) %>%)
|
||
| 24 | </p>
|
||
| 25 | <% else %>
|
||
| 26 | <p><em><%= l(:label_roadmap_no_issues) %></em></p> |
||
| 27 | <% end %> |