I have a simple app where I have a list of client names and a list of savings amounts on another model. In this scenario a user has_many :savings and a saving belongs_to :user. When adding a new savings record you can choose the client that the saving pertains to via collection_select drop down. The code looks like this:
collection_select(:saving, :client_id, Client.all, :id, :name)
That part works just fine, it takes that name from the list and saves the record to that client. However, after saving and going back to the savings show page it lists the client as the client_id instead of the client name, which is to be expected since the code on my show page is:
<%= @saving.client_id %>
My question is, how do I list the client name instead of the client_id on the show page?