Skip to content

Instantly share code, notes, and snippets.

@tonkec
Created February 18, 2016 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonkec/79c881a1b3d0d04d784a to your computer and use it in GitHub Desktop.
Save tonkec/79c881a1b3d0d04d784a to your computer and use it in GitHub Desktop.
<%= search_form_for @q do |f| %>
<%= f.text_field :description_cont %>
<%= f.submit %>
<% end %>
def index
@posts = Post.all
@q = Post.ransack(params[:q])
@posts_s = @q.result.includes(:description).page(params[:page])
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment