Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9236755
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T07:22:25+00:00 2026-06-18T07:22:25+00:00

Just starting to learn rails, and I’m trying to pass a form from one

  • 0

Just starting to learn rails, and I’m trying to pass a form from one view to another view…I’m assuming the way to do this would be to use partial renders.

I want to pass the partial for the form contained in /users/form to index.html.erb in the home view. I just want to create a new user, but from index.html.erb in the home view.

Relevant Code:

_form.html.erb (in users view)

<%= simple_form_for(@user) do |f| %>
  <%= f.error_notification %>

  <div class="form-inputs">
    <%= f.input :email %>
    <%= f.input :condition, :hint => 'what should we look up for you?'%>
  </div>

  <div class="form-actions">
    <%= f.button :submit, 'Begin curation' %>

  </div>
<% end %>

users model (user.rb)

class User < ActiveRecord::Base
  attr_accessible :condition, :email, :name
end

users_controller.rb

class UsersController < ApplicationController
  # GET /users
  # GET /users.json
  def index
    @users = User.all

    respond_to do |format|
      format.html # index.html.erb
      format.json { render json: @users }
    end
  end

  # GET /users/1
  # GET /users/1.json
  def show
    @user = User.find(params[:id])

    respond_to do |format|
      format.html # show.html.erb
      format.json { render json: @user }
    end
  end

  # GET /users/new
  # GET /users/new.json
  def new
    @user = User.new

    respond_to do |format|
      format.html # new.html.erb
      format.json { render json: @user }
    end
  end

  # GET /users/1/edit
  def edit
    @user = User.find(params[:id])
  end

  # POST /users
  # POST /users.json
  def create
    @user = User.new(params[:user])

    respond_to do |format|
      if @user.save
        format.html { redirect_to @user, notice: 'Thanks for sharing. We will be back with your curated information in 2-3 days time!' }
        format.json { render json: @user, status: :created, location: @user }
      else
        format.html { render action: "new" }
        format.json { render json: @user.errors, status: :unprocessable_entity }
      end
    end
  end

  # PUT /users/1
  # PUT /users/1.json
  def update
    @user = User.find(params[:id])

    respond_to do |format|
      if @user.update_attributes(params[:user])
        format.html { redirect_to @user, notice: 'User was successfully updated.' }
        format.json { head :no_content }
      else
        format.html { render action: "edit" }
        format.json { render json: @user.errors, status: :unprocessable_entity }
      end
    end
  end

  # DELETE /users/1
  # DELETE /users/1.json
  def destroy
    @user = User.find(params[:id])
    @user.destroy

    respond_to do |format|
      format.html { redirect_to users_url }
      format.json { head :no_content }
    end
  end
end

I’m sure this is an easy fix, I just don’t know the syntax. I’ve checked other places, and haven’t found anything that helps me.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T07:22:26+00:00Added an answer on June 18, 2026 at 7:22 am

    I would bet my life you don’t have an @user variable defined. SimpleForm needs an instance variable from the proper model to effectively do its magic with the input fields. It gives that error if your variable is not instantiated.

    model_name is called on NilClass. NilClass is your @user.

    Try this instead:

    <%= simple_form_for User.new do |f| %>
    ...
    

    Update

    # app/controllers/users_controller.rb
    class UsersController < ApplicationController
    
      before_filter :prepare_user_form, only: [:index, :new]
    
      protected
    
      def prepare_user_form
        @user = User.new
      end
    
    end
    
    
    # _form.html.erb
    <%= simple_form_for @user do |f| %>
    ...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am just starting to learn OpenGL today from this tutorial: http://openglbook.com/the-book/ I got
I am just starting to learn Rails and I'm creating my first project. In
This may be a stupid question but im just starting to learn Rail thats
I am just starting to learn how Task works, and get one interesting case.
I'm just starting to learn Rails. I created an empty Rails app. And instead
I'm just starting to learn rails, and after going through Michael Hartl's Learn Rails
I am just starting to learn how to script. I'm trying to understand how
I am just starting to learn Ruby on Rails and have a newbie question
I'm just starting to learn about iOS development, and I figure the best way
I'm just starting to learn my way around classes now and I came across

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.