##// END OF EJS Templates
Missing Sort Column Label and Center Align on Admin-Enumerations (#14516)....
Jean-Philippe Lang -
r11821:642a892c0560
parent child
Show More
@@ -1,34 +1,34
1 1 <h2><%=l(:label_enumerations)%></h2>
2 2
3 3 <% Enumeration.get_subclasses.each do |klass| %>
4 4 <h3><%= l(klass::OptionName) %></h3>
5 5
6 6 <% enumerations = klass.shared %>
7 7 <% if enumerations.any? %>
8 8 <table class="list"><thead>
9 9 <tr>
10 10 <th><%= l(:field_name) %></th>
11 11 <th style="width:15%;"><%= l(:field_is_default) %></th>
12 12 <th style="width:15%;"><%= l(:field_active) %></th>
13 <th style="width:15%;"></th>
13 <th style="width:15%;"><%=l(:button_sort)%></th>
14 14 <th align="center" style="width:10%;"> </th>
15 15 </tr></thead>
16 16 <% enumerations.each do |enumeration| %>
17 17 <tr class="<%= cycle('odd', 'even') %>">
18 18 <td><%= link_to h(enumeration), edit_enumeration_path(enumeration) %></td>
19 19 <td class="center" style="width:15%;"><%= checked_image enumeration.is_default? %></td>
20 20 <td class="center" style="width:15%;"><%= checked_image enumeration.active? %></td>
21 <td style="width:15%;"><%= reorder_links('enumeration', {:action => 'update', :id => enumeration}, :put) %></td>
21 <td align="center" style="width:15%;"><%= reorder_links('enumeration', {:action => 'update', :id => enumeration}, :put) %></td>
22 22 <td class="buttons">
23 23 <%= delete_link enumeration_path(enumeration) %>
24 24 </td>
25 25 </tr>
26 26 <% end %>
27 27 </table>
28 28 <% reset_cycle %>
29 29 <% end %>
30 30
31 31 <p><%= link_to l(:label_enumeration_new), new_enumeration_path(:type => klass.name) %></p>
32 32 <% end %>
33 33
34 34 <% html_title(l(:label_enumerations)) -%>
General Comments 0
You need to be logged in to leave comments. Login now