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

  • SEARCH
  • Home
  • 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 7635123
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T07:21:41+00:00 2026-05-31T07:21:41+00:00

I have two models, a Charity model and a Milestone model. A charity has_many

  • 0

I have two models, a Charity model and a Milestone model. A charity has_many milestones.

To keep the interface a bit simpler, I’m putting the small milestone form on the show view of the Charity controller. This is fine, but when the charity model fails to save, how do i go back and render those objects with the show action so I get their invalid state?

Here’s my create action on the milestones controller. Presently I’m getting a model_name error for nil, meaning that the instance variables are likely not set.

def create
  @charity = Charity.find(params[:charity_id])
  @charity.milestones.build(params[:milestone])
  if @charity.save
    redirect_to @charity, notice: "Milestone added"
  else
    render 'charities/show'
  end
end

I know you can normally do just render action :new, but since this is across controllers, it does not work. Ideas?

  • 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-05-31T07:21:42+00:00Added an answer on May 31, 2026 at 7:21 am

    Forgot to set the @milestone instance variable. Silly mistake. Hope this helps someone down the road.

    def create
      @charity = Charity.find(params[:charity_id])
      @milestone = @charity.milestones.build(params[:milestone])    
      if @charity.save
        redirect_to @charity, notice: "Milestone added"
      else
        render 'charities/show' 
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have two models. Batch and Subject. The relation between them are Batch HAS_MANY
I have two models class User < ActiveRecord::Base has_many :posts searchable do text :post_titles
I have two models, Article and Post that both inherit from a base model
I have two models Company and Role related by has_many and belongs_to association respectively.
I have two models Horse and Race. class Horse < ActiveRecord::Base has_many :races end
I have two models Project and UrlList . A project :has_many url_list and a
I have two models: class Studio(models.Model): name = models.CharField(Studio, max_length=30, unique=True) class Film(models.Model): studio
I have two models pages and author, here is the code of model pages:
I have two models, Story and Category. Using the form for Story#new , I'd
I have two models: class Video(models.Model): slug = models.SlugField(blank=True, default='', db_index=True, unique=True) class VideoTranslation(models.Model):

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.