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.rhtml @ 441:cbce1fd3b1b7
History | View | Annotate | Download (1.52 KB)
| 1 |
<% 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 |
<% 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 |
</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 %>
|