# File app/controllers/users_controller.rb, line 4 def index @users = User.paginate(:page => params[:page]) @us = User.all end
# File app/controllers/users_controller.rb, line 9 def show @focus = false if flash[:focus] == true @focus = true end @user = User.find(params[:id]) end