% if tree.immediate_subaccounts.length == 0 %>
<%= link_to (tree.popis+(tree.seq.empty? ? '' :' ('+tree.seq.to_s+')')).html_safe, {:id => tree, :action=>'show'}, :title => tree.poznamky %>
<%= link_to 'ukaž', {:id => tree, :action=>'show'}, :title => tree.poznamky, :class=> "listnav" %> |
<%= link_to 'edituj', {:id => tree, :action=>'edit'}, :title => tree.poznamky, :class=> "listnav" %>
<% else -%>
<%= link_to 'ukaž', {:id => tree, :action=>'show'}, :title => tree.poznamky, :class=> "listnav" %> |
<%= link_to 'edituj', {:id => tree, :action=>'edit'}, :title => tree.poznamky, :class=> "listnav" %>
<% for account in tree.immediate_subaccounts %>
<%= render 'tree', :tree => account %>
<% end %>
<% end -%>