10 lines
283 B
Plaintext
10 lines
283 B
Plaintext
<% node = Item.root %>
|
|
<% unless node.nil? %>
|
|
<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" %>
|