Mercurial > hg > soundsoftware-site
comparison .svn/pristine/af/af4ee39953b41daae78d74937664bfbeedf5ef0a.svn-base @ 1464:261b3d9a4903 redmine-2.4
Update to Redmine 2.4 branch rev 12663
author | Chris Cannam |
---|---|
date | Tue, 14 Jan 2014 14:37:42 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1296:038ba2d95de8 | 1464:261b3d9a4903 |
---|---|
1 <table class="list transitions transitions-<%= name %>"> | |
2 <thead> | |
3 <tr> | |
4 <th> | |
5 <%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('table.transitions-#{name} input')", | |
6 :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %> | |
7 <%=l(:label_current_status)%> | |
8 </th> | |
9 <th colspan="<%= @statuses.length %>"><%=l(:label_new_statuses_allowed)%></th> | |
10 </tr> | |
11 <tr> | |
12 <td></td> | |
13 <% for new_status in @statuses %> | |
14 <td style="width:<%= 75 / @statuses.size %>%;"> | |
15 <%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('table.transitions-#{name} input.new-status-#{new_status.id}')", | |
16 :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %> | |
17 <%=h new_status.name %> | |
18 </td> | |
19 <% end %> | |
20 </tr> | |
21 </thead> | |
22 <tbody> | |
23 <% for old_status in @statuses %> | |
24 <tr class="<%= cycle("odd", "even") %>"> | |
25 <td class="name"> | |
26 <%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('table.transitions-#{name} input.old-status-#{old_status.id}')", | |
27 :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %> | |
28 | |
29 <%=h old_status.name %> | |
30 </td> | |
31 <% for new_status in @statuses -%> | |
32 <% checked = workflows.detect {|w| w.old_status_id == old_status.id && w.new_status_id == new_status.id} %> | |
33 <td class="<%= checked ? 'enabled' : '' %>"> | |
34 <%= check_box_tag "issue_status[#{ old_status.id }][#{new_status.id}][]", name, checked, | |
35 :class => "old-status-#{old_status.id} new-status-#{new_status.id}" %> | |
36 </td> | |
37 <% end -%> | |
38 </tr> | |
39 <% end %> | |
40 </tbody> | |
41 </table> |