Simple Search Form in Rails 3 App not Displaying
问题 I ran through railscast #37 and can't seem to even get my search form to display on my index page. Any ideas whats wrong with my code? thanks in advance! any help is greatly appreciated. Here is the index page where the form is located: <h1>All users</h1> <% form_tag users_path, :method => 'get' do %> <p> <%= text_field_tag :search, params[:search] %> <%= submit_tag "Search", :name => nil %> </p> <% end %> Heres the controller: class UsersController < ApplicationController ... def index