_categories.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. <table>
  2.   <tr>
  3.     <th><%= _("Title") %></th>
  4.   </tr>
  5.   <%= render_void_table(@categories.size, 2)  %>
  6.   
  7.   <% for category in @categories -%>
  8.   <tr <%= alternate_class -%> id="category_<%= category.id -%>">
  9.     <td>
  10.       <%= link_to_edit category.name, category %><br />
  11.       <%= show_actions category %>
  12.       </td>
  13.   </tr>  
  14.   <% end -%>
  15.   <tr>
  16.     <td class='paginate'>
  17.       <%= link_to_remote(_('Reorder'), :update => 'category_container', :url => { :action => 'reorder' }) %> |
  18.       <%= link_to_remote(_('Sort alphabetically'), :update => 'category_container', :url => { :action => 'asort' }) %>
  19.       
  20.     </td>
  21.   </tr>
  22. </table>