Guest User

Untitled

a guest
May 25th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. def index
  2. if params[:query]
  3. @posts = Post.search(params[:query])
  4. else
  5. @posts = Post.find(:all)
  6. end
  7. respond_to do |format|
  8. format.html # index.html.erb
  9. format.xml { render :xml => @posts }
  10. end
  11. end
  12.  
  13.  
  14. <% form_tag posts_path, :method => :get do %>
  15. <p>
  16. <%= text_field_tag "query", "size" => 30 %>
  17. </p>
  18. <p>
  19. <%= submit_tag "Search" %>
  20. </p>
  21. <% end %>
Add Comment
Please, Sign In to add comment