Skip to content

Instantly share code, notes, and snippets.

@adamdilek
Created September 10, 2013 06:36
Show Gist options
  • Select an option

  • Save adamdilek/6505731 to your computer and use it in GitHub Desktop.

Select an option

Save adamdilek/6505731 to your computer and use it in GitHub Desktop.
Bootstrap and Rails Tricks

Search Form Oluşturma

Search Form

= search_form_for @search, builder: SimpleForm::FormBuilder do |f|
  .input-group
    = f.input_field :name_cont, label: false, input_html: {class: 'form-control'}, placeholder: 'Quick search...'
    %span.input-group-btn
      = button_tag( class: 'btn') do
        %i.icon-search
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment