Sha256: a99022aafb29d8def9d02159f1df4a9a73b680d1f4c989d06f09a9781d6d7904
Contents?: true
Size: 729 Bytes
Versions: 34
Compression:
Stored size: 729 Bytes
Contents
<%= bootstrap_form_for :link, :url => "./", :method => (@link ? :put : :post),:html => {:id => "edit-link-form",:class => 'form-horizontal'} do |f| %> <fieldset> <legend>Link</legend> <%= f.text_field :name %> <%= f.text_field :url %> </fieldset> <%= f.actions do %> <%= f.submit(:include_cancel => false, :value => (@link ? 'Save' : "Create"), :class => "btn btn-primary") %> <%= button_tag 'Cancel', :onclick => "document.location = '#{edit_menu_path(@menu)}'; return false;", :class => 'btn' %> <% if @link %> <%= link_to 'Remove', menu_link_path(@menu,@link), :confirm => 'Are you sure?',:class => 'btn btn-warning', :method => :delete %> <% end %> <% end %> <% end %>
Version data entries
34 entries across 34 versions & 1 rubygems