3 つの変数を同じテーブル セルに追加し、それらを / で区切りたいので、BR/BA 列には次のようなエントリが含まれます。私がやる?ありがとう、アダム
<table class="listing" summary="Property list">
<tr class="header">
<th>Property Address</th>
<th>Price</th>
<th>Sq Ft</th>
<th>BR/BA</th>
<th>Type</th>
</tr>
<% @properties.each do |property| %>
<tr>
<td><%= link_to(property.address, {:action => 'show', :id => property.id}) %></td>
<td class="center"><%= property.price %></td>
<td class="center"><%= property.sq_ft %></td>
<td class="center"><%= {property.bedrooms "/" property.bathrooms "/" property.half_bathrooms} %></td>
<td class="center"><%= property.property_type %></td>
</tr>
<% end %>