##// END OF EJS Templates
Missing Sort Column Label and Center Align on Admin-Enumerations (#14516)....
Jean-Philippe Lang -
r11821:642a892c0560
parent child
Show More
@@ -10,7 +10,7
10 <th><%= l(:field_name) %></th>
10 <th><%= l(:field_name) %></th>
11 <th style="width:15%;"><%= l(:field_is_default) %></th>
11 <th style="width:15%;"><%= l(:field_is_default) %></th>
12 <th style="width:15%;"><%= l(:field_active) %></th>
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 <th align="center" style="width:10%;"> </th>
14 <th align="center" style="width:10%;"> </th>
15 </tr></thead>
15 </tr></thead>
16 <% enumerations.each do |enumeration| %>
16 <% enumerations.each do |enumeration| %>
@@ -18,7 +18,7
18 <td><%= link_to h(enumeration), edit_enumeration_path(enumeration) %></td>
18 <td><%= link_to h(enumeration), edit_enumeration_path(enumeration) %></td>
19 <td class="center" style="width:15%;"><%= checked_image enumeration.is_default? %></td>
19 <td class="center" style="width:15%;"><%= checked_image enumeration.is_default? %></td>
20 <td class="center" style="width:15%;"><%= checked_image enumeration.active? %></td>
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 <td class="buttons">
22 <td class="buttons">
23 <%= delete_link enumeration_path(enumeration) %>
23 <%= delete_link enumeration_path(enumeration) %>
24 </td>
24 </td>
General Comments 0
You need to be logged in to leave comments. Login now