To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / versions / .svn / text-base / _issue_counts.rhtml.svn-base @ 441:cbce1fd3b1b7

History | View | Annotate | Download (1.35 KB)

1 0:513646585e45 Chris
<form id="status_by_form">
2
<fieldset>
3
<legend>
4
<%= l(:label_issues_by,
5
       select_tag('status_by',
6
                   status_by_options_for_select(criteria),
7
                   :id => 'status_by_select',
8 22:40f7cfd4df19 chris
                   :onchange => remote_function(:url => status_by_project_version_path(version.project, version),
9 0:513646585e45 Chris
                                                :with => "Form.serialize('status_by_form')"))) %>
10
</legend>
11
<% if counts.empty? %>
12
    <p><em><%= l(:label_no_data) %></em></p>
13
<% else %>
14
    <table>
15
    <% counts.each do |count| %>
16
    <tr>
17
        <td width="130px" align="right" >
18
            <%= link_to count[:group], {:controller => 'issues',
19
                                        :action => 'index',
20
                                        :project_id => version.project,
21
                                        :set_filter => 1,
22 441:cbce1fd3b1b7 Chris
                                        :status_id => '*',
23
                                        :fixed_version_id => version}.merge("#{criteria}_id".to_sym => count[:group]) %>
24 0:513646585e45 Chris
        </td>
25
        <td width="240px">
26
            <%= progress_bar((count[:closed].to_f / count[:total])*100,
27
                  :legend => "#{count[:closed]}/#{count[:total]}",
28
                  :width => "#{(count[:total].to_f / max * 200).floor}px;") %>
29
        </td>
30
    </tr>
31
    <% end %>
32
    </table>
33
<% end %>
34
</fieldset>
35
</form>