Displaying 1 result from an estimated 1 matches for "hotelcontracts".
2011 Mar 04
4
!map:HashWithIndifferentAccess
...es says, it thinks I am working with a hash,
the thing is that I''m not. The column is clearly defined as a character
varying as is most all of the other columns which display with no
problem. The thing is I can''t figure out how to fix this problem. Here
is some of my code:
<% @hotelcontracts.each do |@contract| %>
<div id = "contract_<%= @contract.id %>">
<%= @contract.hotel_name %>
<%= @contract.rate %>
<%= @contract.amen %> ERROR OCCURES HERE
</div>
<% end %>
Has anybody ran into this issue before? And how did yo...