##// END OF EJS Templates
Lists can be reordered with drag and drop (#12909)....
Lists can be reordered with drag and drop (#12909). git-svn-id: http://svn.redmine.org/redmine/trunk@15336 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14686:7467c145c03c
r14954:42b5c332b2c2
Show More
_form.html.erb
44 lines | 1.8 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>
Jean-Philippe Lang
Replace uses of image_tag() with CSS (#21256)....
r14686 <%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input')",
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
:class => 'icon-only icon-checked') %>
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 %>%;">
Jean-Philippe Lang
Replace uses of image_tag() with CSS (#21256)....
r14686 <%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input.new-status-#{new_status.id}')",
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
:class => 'icon-only icon-checked') %>
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <%= new_status.name %>
Toshi MARUYAMA
replace tabs to spaces at app/views/workflows/_form.html.erb....
r6556 </td>
<% end %>
</tr>
Jean-Philippe Lang
Allow additional workflow transitions for issue author and assignee (#2732)....
r4775 </thead>
<tbody>
Jean-Philippe Lang
Makes new issue initial status settable in workflow (#5816)....
r14076 <% for old_status in [nil] + @statuses %>
<% next if old_status.nil? && name != 'always' %>
Toshi MARUYAMA
replace tabs to spaces at app/views/workflows/_form.html.erb....
r6556 <tr class="<%= cycle("odd", "even") %>">
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td class="name">
Jean-Philippe Lang
Replace uses of image_tag() with CSS (#21256)....
r14686 <%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input.old-status-#{old_status.try(:id) || 0}')",
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
:class => 'icon-only icon-checked') %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/workflows/_form.html.erb....
r6558
Jean-Philippe Lang
Makes new issue initial status settable in workflow (#5816)....
r14076 <%= old_status ? old_status.name : content_tag('em', l(:label_issue_new)) %>
Toshi MARUYAMA
replace tabs to spaces at app/views/workflows/_form.html.erb....
r6556 </td>
<% for new_status in @statuses -%>
Jean-Philippe Lang
Makes new issue initial status settable in workflow (#5816)....
r14076 <% checked = workflows.detect {|w| w.old_status == old_status && w.new_status == new_status} %>
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>