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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T21:38:30+00:00 2026-05-30T21:38:30+00:00

I have a table Cases with the has_many association to users. I’m trying to

  • 0

I have a table Cases with the has_many association to users. I’m trying to display all the cases related to a user by rendering it in user show page. I’m unable to render the case in here. Any help would be appreciated.

My code for user show page :

 <table >
  <tr>
    <td >
      <h1>
        Welcome <%= current_user.first_name %>  you are <%= current_user.role %>    
      </h1>
    </td>
    </tr>
    <tr>
      <td>
        <% render @cases %>
      </td>
    </tr>
    </table>

Show controller in users:

     def show
    @user = User.find(params[:id])
    @cases = @user.cases
    @title = @user.first_name
    end

I have a file _case.html.erb in views/cases.

  • 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-30T21:38:31+00:00Added an answer on May 30, 2026 at 9:38 pm

    The problem is that case is a reserved word in Ruby, and when do render @cases, it is trying to create a local variable called case in the partial, which is not allowed. You have to call the local variable something else. The docs here explain how with this example:

    # Renders a collection of partials but with a custom local variable name
    render :partial => "admin_person", :collection => @winners, :as => :person
    

    In your case that would be:

    render :partial => 'case', :collection => @cases, :as => :current_case
    

    And then in the case partial, just use the variable current_case where you would have otherwise used the variable case.

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

Sidebar

Related Questions

I have a table that logs page views of each user: +--------------+--------------+------+-----+---------+----------------+ | Field
I have a table that was imported as all UPPER CASE and I would
I have table with 50 entries (users with such details like Name Surname Location
So I have an existing database that I'm trying to manipulate through ActiveRecord. All
I have some problems to set up and association correctly, I looked at all
I am trying to do a basic belongs_to/has_many association but running into a problem.
I have two tables, users and groups . A user can belong to many
I have 3 tables; CASES , USERS and USER_META . For this issue you
I'm trying to do an association of two objects with Doctrine (PHP). I have
Here's my case: I have a table view showing contacts. Add button in the

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.