<%= link_to @document.title, @document, :target => '_blank' %>

<% if @document.image %> <%= image_tag @document.image.thumb('100x100').png.url %> <% end %> <% if @document.node.leaf? %> <%= @document.body.try(:html_safe) %> <% else %> <%= to_html @document.summary %> <% end %>

<%= link_to 'Edit', edit_qwerty_admin_document_path(@document), :class => 'btn small' %> <%= link_to 'Live', document_path(@document), :target => '_blank', :class => 'btn small' %> <%= link_to 'Delete', qwerty_admin_document_path(@document), :method => :delete, :confirm => 'Are you sure?', :class => 'btn small danger' unless @document.get(:can_delete) == false %>

<% @document.node.children.each do | node | %>

<%= node.name.pluralize.capitalize %>

<% unless @document.leaf? %>
<%= render :partial => @document.children.by_node(node) %>
<% else %>

No <%= node.name.capitalize.pluralize %> have been added yet.

<% end %>

<%= link_to "Add #{node.name.capitalize}", new_qwerty_admin_document_path(:parent_id => @document.id, :node_id => node.id), :class => 'btn primary' %>

<% end %>