%h1= root
- if parent
%a{ :href => parent.empty? ? "/#{idx}" : "/#{idx}#{parent}", :class => "parent" }
↪ Back to parent
- else
%a{ :href => "/", :class => "parent" }
↪ Back to selection
%h2
%span.path= request.path_info.empty? ? '/' : request.path_info
%a{ :href => "?mode=raw" } (raw)
%a{ :href => "?mode=edit" } (edit)
%a{ :href => "?mode=delete", :onclick => "javascript:return confirm('Are you sure?')" } (delete)
%form{ :class => "edit", :action => "/#{idx}#{request.path_info}/save", :method => "post", :style => "display:none;" }
#editor
%textarea{ :id => 'data', :name => "data" }= preserve contents
%input{ :type => 'submit', :value => "Save" }
%a{ :href => "/#{idx}#{request.path_info}" } Cancel
%input{ :type => 'hidden', :class => 'filename', :value => request.path_info }