2012-04-25 21:17:49 +04:00
|
|
|
<%= form_tag({}, :id => "status_by_form") do -%>
|
2007-12-07 13:26:07 +03:00
|
|
|
<fieldset>
|
|
|
|
<legend>
|
2011-08-02 16:36:28 +04:00
|
|
|
<%= l(:label_issues_by,
|
2007-12-07 13:26:07 +03:00
|
|
|
select_tag('status_by',
|
|
|
|
status_by_options_for_select(criteria),
|
|
|
|
:id => 'status_by_select',
|
2012-07-22 17:29:26 +04:00
|
|
|
:data => {:remote => true, :method => 'post', :url => status_by_version_path(version)})).html_safe %>
|
2007-12-07 13:26:07 +03:00
|
|
|
</legend>
|
|
|
|
<% if counts.empty? %>
|
|
|
|
<p><em><%= l(:label_no_data) %></em></p>
|
|
|
|
<% else %>
|
|
|
|
<table>
|
|
|
|
<% counts.each do |count| %>
|
|
|
|
<tr>
|
|
|
|
<td width="130px" align="right" >
|
2012-10-30 19:17:11 +04:00
|
|
|
<% if count[:group] -%>
|
2012-10-30 18:24:33 +04:00
|
|
|
<%= link_to(h(count[:group]), project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => count[:group])) %>
|
2012-10-30 19:17:11 +04:00
|
|
|
<% else -%>
|
2012-10-30 18:24:33 +04:00
|
|
|
<%= link_to(l(:label_none), project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => "!*")) %>
|
2012-10-30 19:17:11 +04:00
|
|
|
<% end %>
|
2007-12-07 13:26:07 +03:00
|
|
|
</td>
|
|
|
|
<td width="240px">
|
2011-08-02 16:36:28 +04:00
|
|
|
<%= progress_bar((count[:closed].to_f / count[:total])*100,
|
2007-12-07 13:26:07 +03:00
|
|
|
:legend => "#{count[:closed]}/#{count[:total]}",
|
|
|
|
:width => "#{(count[:total].to_f / max * 200).floor}px;") %>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</table>
|
|
|
|
<% end %>
|
|
|
|
</fieldset>
|
2012-01-08 21:18:53 +04:00
|
|
|
<% end %>
|