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 7932589
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T21:03:52+00:00 2026-06-03T21:03:52+00:00

I’ve got an app that sets timed challenges for users. Each user is associated

  • 0

I’ve got an app that sets timed challenges for users. Each user is associated with one or more challenges. I’ve setup the models so they connect via a join table. That works fine, but I’m having problems on my view level. In the index view for the challenges, data from the challenge model and from the user model are displayed. But where the view should display the user’s name, it’s just displaying “User.” If you click on “User”, you are taken to the correct “show” page for that user. So the link works fine, but I can’t get the user’s name to appear. Instead, I’m just getting the class name to appear. Any idea why?

Here’s the code for the view. The file directly below is is views/challenges/index.html.erb

        <%- model_class = Challenge.new.class -%>
        <h1><%=t '.title', :default => model_class.model_name.human.pluralize %></h1>
        <table class="table table-striped">
          <thead>
            <tr>
              <th><%= model_class.human_attribute_name(:date) %></th>
              <th><%= model_class.human_attribute_name(:time) %></th>
              <th><%= model_class.human_attribute_name(:rider) %></th>
              <th><%=t '.actions', :default => t("helpers.actions") %></th>
            </tr>
          </thead>
          <tbody>
            <% @challenges.each do |challenge| %>
              <tr>
                <td><%= link_to challenge.date, challenge_path(challenge) %></td>
                <td><%= link_to challenge.duration, challenge_path(challenge) %></td>
                <td><%= link_to challenge.users.name, user_path(challenge) %></td>
              </tr>
            <% end %>
          </tbody>
        </table>

And here’s the relevant models.
Challenge.rb

class Challenge < ActiveRecord::Base
  attr_accessible :date, :duration, :user

  has_many :user_challenges
  has_many :users, :through  => :user_challenges
  validates_presence_of :date, :duration

  def self.winner
    Challenge.find(:first, :order => "duration desc")
  end

end

User.rb

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

    has_many :user_challenges
    has_many :challenges, :through => :user_challenges

    validates_presence_of :name, :email
    validates_uniqueness_of :email

    def self.find_or_create(name, email)
      user = User.find_by_email(email)
      if user.present?
        user.challenge = challenge
        user.save
      else
        User.create(:name => name, :email => email)
      end
    end
  end

Join table, aka User_challenge.rb

class UserChallenge < ActiveRecord::Base
  belongs_to :challenge
  belongs_to :user
end
  • 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-03T21:03:55+00:00Added an answer on June 3, 2026 at 9:03 pm

    challenge.users is a collection and .name is a ruby method that gives you the name of the class:

    ruby-1.9.2-head :002 > Object.name
     => "Object" 
    

    Call the attribute something else (username).

    Also, user_path(challenge) doesn’t really make sense when a Challenge can have_many :users (which users path should it be?).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a string that has curly quotes in it. I'd like to replace
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
Basically, what I'm trying to create is a page of div tags, each has
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I am reading a book about Javascript and jQuery and using one of the
I have a French site that I want to parse, but am running into
In my XML file chapters tag has more chapter tag.i need to display chapters
I am doing a simple coin flipping experiment for class that involves flipping a

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.