Sha256: b8cbdc8f3db1a6eee8b81b04985cdc7ca05edc8328915e254a74d8fdd789aa96
Contents?: true
Size: 752 Bytes
Versions: 15
Compression:
Stored size: 752 Bytes
Contents
<%= twitter_bootstrap_form_for @page, :url => "./",:html => {:id => "edit-page-form",:class => 'form-horizontal'} do |f| %> <%= f.fieldset "Page" do %> <%= f.text_field :title, "Title" %> <%= f.text_field :path, :placeholder => "/enter/a/path" %> <% end %> <%= f.actions do %> <%= f.submit 'Save' %> <%= button_tag 'Cancel', :onclick => "document.location = '#{pages_path}'; return false;", :class => 'btn' %> <% if @page %> <%= button_tag 'Remove', :onclick => "$('#destroy-link').click(); return false;", :class => 'btn' %> <%= link_to 'Destroy', page_path(@page), :confirm => 'Are you sure?',:id => 'destroy-link', :method => :delete, :style => "display: none;" %> <% end %> <% end %> <% end %>
Version data entries
15 entries across 15 versions & 1 rubygems