##// END OF EJS Templates
Use css pseudo-classes instead of cycle("odd", "even") (#15361)....
Use css pseudo-classes instead of cycle("odd", "even") (#15361). Patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@16249 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15867:9814dcf231b5
r15867:9814dcf231b5
Show More
_form.html.erb
49 lines | 1.9 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' %>
Jean-Philippe Lang
Use css pseudo-classes instead of cycle("odd", "even") (#15361)....
r15867 <tr>
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') %>
Jean-Philippe Lang
Adds a tooltip to cells on workflow page (#12598)....
r15781 <% if old_status %>
<% old_status_name = old_status.name %>
<%= old_status_name %>
<% else %>
<% old_status_name = l(:label_issue_new) %>
<%= content_tag('em', old_status_name) %>
<% end %>
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
Adds a tooltip to cells on workflow page (#12598)....
r15781 <td class="<%= checked ? 'enabled' : '' %>" title="<%= old_status_name %> &#187; <%= new_status.name %>">
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>