summaryrefslogtreecommitdiffstats
path: root/app/views/versions/_overview.html.erb
blob: aea77af1206fd4ee101e30bf6197779d41821594 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<% if version.completed? %>
  <p><%= format_date(version.effective_date) %></p>
<% elsif version.effective_date %>
  <p><strong><%= due_date_distance_in_words(version.effective_date) %></strong> (<%= format_date(version.effective_date) %>)</p>
<% end %>

<p><%=h version.description %></p>
<% if version.custom_values.any? %>
<ul>
  <% version.custom_field_values.each do |custom_value| %>
    <% if custom_value.value.present? %>
       <li><%=h custom_value.custom_field.name %>: <%=h show_value(custom_value) %></li>
    <% end %>
  <% end %>
</ul>
<% end %>

<% if version.fixed_issues.count > 0 %>
    <%= progress_bar([version.closed_pourcent, version.completed_pourcent], :width => '40em', :legend => ('%0.0f%' % version.completed_pourcent)) %>
    <p class="progress-info">
    	  <%= link_to(l(:label_x_issues, :count => version.fixed_issues.count), 
              project_issues_path(version.project, :status_id => '*', :fixed_version_id => version, :set_filter => 1)) %>
				&nbsp;
        (<%= link_to_if(version.closed_issues_count > 0, l(:label_x_closed_issues_abbr, :count => version.closed_issues_count), 
               project_issues_path(version.project, :status_id => 'c', :fixed_version_id => version, :set_filter => 1)) %>
        &#8212;
        <%= link_to_if(version.open_issues_count > 0, l(:label_x_open_issues_abbr, :count => version.open_issues_count), 
              project_issues_path(version.project, :status_id => 'o', :fixed_version_id => version, :set_filter => 1)) %>)
    </p>
<% else %>
    <p class="progress-info"><%= l(:label_roadmap_no_issues) %></p>
<% end %>