orbit-basic/app/views/admin/items/index.html.erb

10 lines
283 B
Plaintext
Raw Normal View History

<% node = Item.root %>
<% unless node.nil? %>
2013-07-22 08:31:44 +00:00
<ol id='<%= node.id %>' class="sortable item-groups">
<%= render 'node_and_children', node: node %>
</ol>
<% end %>
<%= render 'layouts/delete_modal', delete_options: {remote: true} %>
<%= javascript_include_tag "lib/pageslide.js" %>