##// END OF EJS Templates
Merged r14381....
Merged r14381. git-svn-id: http://svn.redmine.org/redmine/branches/2.6-stable@14384 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r12649:b6c794d16b47
r14002:f745102e4d43
Show More
_form.html.erb
40 lines | 1.6 KiB | text/plain | TextLexer
Jean-Philippe Lang
Bulk edit workflows for multiple trackers/roles (#16164)....
r12649 <table class="list workflows transitions transitions-<%= name %>">
Jean-Philippe Lang
Allow additional workflow transitions for issue author and assignee (#2732)....
r4775 <thead>
Toshi MARUYAMA
replace tabs to spaces at app/views/workflows/_form.html.erb....
r6556 <tr>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <th>
Toshi MARUYAMA
replace tabs to spaces at app/views/workflows/_form.html.erb....
r6556 <%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('table.transitions-#{name} input')",
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %>
Jean-Philippe Lang
Allow additional workflow transitions for issue author and assignee (#2732)....
r4775 <%=l(:label_current_status)%>
</th>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <th colspan="<%= @statuses.length %>"><%=l(:label_new_statuses_allowed)%></th>
Toshi MARUYAMA
replace tabs to spaces at app/views/workflows/_form.html.erb....
r6556 </tr>
<tr>
<td></td>
<% for new_status in @statuses %>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td style="width:<%= 75 / @statuses.size %>%;">
Toshi MARUYAMA
replace tabs to spaces at app/views/workflows/_form.html.erb....
r6556 <%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('table.transitions-#{name} input.new-status-#{new_status.id}')",
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %>
<%=h new_status.name %>
</td>
<% end %>
</tr>
Jean-Philippe Lang
Allow additional workflow transitions for issue author and assignee (#2732)....
r4775 </thead>
<tbody>
Toshi MARUYAMA
replace tabs to spaces at app/views/workflows/_form.html.erb....
r6556 <% for old_status in @statuses %>
<tr class="<%= cycle("odd", "even") %>">
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td class="name">
Toshi MARUYAMA
replace tabs to spaces at app/views/workflows/_form.html.erb....
r6556 <%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('table.transitions-#{name} input.old-status-#{old_status.id}')",
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/workflows/_form.html.erb....
r6558
Toshi MARUYAMA
replace tabs to spaces at app/views/workflows/_form.html.erb....
r6556 <%=h old_status.name %>
</td>
<% for new_status in @statuses -%>
Jean-Philippe Lang
Colorize transitions....
r9805 <% checked = workflows.detect {|w| w.old_status_id == old_status.id && w.new_status_id == new_status.id} %>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td class="<%= checked ? 'enabled' : '' %>">
Jean-Philippe Lang
Bulk edit workflows for multiple trackers/roles (#16164)....
r12649 <%= transition_tag workflows, old_status, new_status, name %>
Toshi MARUYAMA
replace tabs to spaces at app/views/workflows/_form.html.erb....
r6556 </td>
<% end -%>
</tr>
<% end %>
Jean-Philippe Lang
Allow additional workflow transitions for issue author and assignee (#2732)....
r4775 </tbody>
Toshi MARUYAMA
replace tabs to spaces at app/views/workflows/_form.html.erb....
r6556 </table>