summaryrefslogtreecommitdiffstats
path: root/app/views/workflows/_form.html.erb
blob: ccdee2385f43fa48d4f89bfe02c5cece4fc0314a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<table class="list workflows transitions transitions-<%= name %>">
<thead>
  <tr>
    <th>
      <%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input')",
                           :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
                           :class => 'icon-only icon-checked') %>
      <%=l(:label_current_status)%>
    </th>
    <th colspan="<%= @statuses.length %>"><%=l(:label_new_statuses_allowed)%></th>
  </tr>
  <tr>
    <td></td>
    <% for new_status in @statuses %>
    <td style="width:<%= 75 / @statuses.size %>%;">
      <%= 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') %>
      <%= new_status.name %>
    </td>
    <% end %>
  </tr>
</thead>
<tbody>
  <% for old_status in [nil] + @statuses %>
  <% next if old_status.nil? && name != 'always' %>
  <tr class="<%= cycle("odd", "even") %>">
    <td class="name">
      <%= 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') %>
      <% 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 %>
    </td>
    <% for new_status in @statuses -%>
    <% checked = workflows.detect {|w| w.old_status == old_status && w.new_status == new_status} %>
    <td class="<%= checked ? 'enabled' : '' %>" title="<%= old_status_name %> &#187; <%= new_status.name %>">
      <%= transition_tag workflows, old_status, new_status, name %>
    </td>
    <% end -%>
  </tr>
  <% end %>
</tbody>
</table>