2012-01-08 21:18:53 +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',
|
2011-07-05 20:29:06 +04:00
|
|
|
:onchange => remote_function(:url => status_by_version_path(version),
|
2011-12-18 16:26:28 +04:00
|
|
|
:with => "Form.serialize('status_by_form')"))).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" >
|
2011-08-02 17:07:35 +04:00
|
|
|
<%= link_to h(count[:group]), {:controller => 'issues',
|
2007-12-07 13:26:07 +03:00
|
|
|
:action => 'index',
|
|
|
|
:project_id => version.project,
|
|
|
|
:set_filter => 1,
|
2011-03-21 23:08:16 +03:00
|
|
|
:status_id => '*',
|
|
|
|
:fixed_version_id => version}.merge("#{criteria}_id".to_sym => count[:group]) %>
|
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 %>
|