##// END OF EJS Templates
remove trailing white-spaces from app/views/workflows/index.rhtml....
Toshi MARUYAMA -
r6561:12c5d5dba247
parent child
Show More
@@ -1,35 +1,35
1 1 <%= render :partial => 'action_menu' %>
2 2
3 3 <h2><%=l(:label_workflow)%></h2>
4 4
5 5 <% if @workflow_counts.empty? %>
6 6 <p class="nodata"><%= l(:label_no_data) %></p>
7 7 <% else %>
8 8 <div class="autoscroll">
9 9 <table class="list">
10 10 <thead>
11 11 <tr>
12 12 <th></th>
13 13 <% @workflow_counts.first.last.each do |role, count| %>
14 14 <th>
15 15 <%= content_tag(role.builtin? ? 'em' : 'span', h(role.name)) %>
16 16 </th>
17
17
18 18 <% end %>
19 19 </tr>
20 20 </thead>
21 21 <tbody>
22 22 <% @workflow_counts.each do |tracker, roles| -%>
23 23 <tr class="<%= cycle('odd', 'even') %>">
24 24 <td><%= h tracker %></td>
25 25 <% roles.each do |role, count| -%>
26 26 <td align="center">
27 27 <%= link_to((count > 0 ? count : image_tag('false.png')), {:action => 'edit', :role_id => role, :tracker_id => tracker}, :title => l(:button_edit)) %>
28 28 </td>
29 29 <% end -%>
30 30 </tr>
31 31 <% end -%>
32 32 </tbody>
33 33 </table>
34 34 </div>
35 35 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now