テーブルレコードのリストを表示するときのレールでは、各レコードのIDを表示する列があります(テーブルにいくつのレコードが存在するかを確認するため)唯一の問題は、たとえば、レコード番号3が削除された場合です。 id も削除されます (一意性のため)。
IDを表示する代わりに、リストを表示するときに1、2、3、4、5などをリストできる方法はありますか? テーブルで?
これは私のテーブルです:
<center>
<p class="recordnumber"><%= pluralize(@ranches.size, 'Ranch') %> found<p>
<%= render :partial => "shared/newlink" %>
<table class="listing" summary="Ranches">
<tr>
<th>#</th>
<th>Ranch Name</th>
<th>Address</th>
<th>Telephone</th>
<th>Actions</th>
</tr>
<% @ranches.each do |ranch| %>
<tr class="<%= cycle('odd', 'even') %>">
<td><%= ranch.id %></td>
<td><%= ranch.name %></td>
<td><%= ranch.address_line_1 %>,</br><%= ranch.town_city %>,</br><%= ranch.postcode %></td>
<td><%= ranch.telephone %></td>
<td>
<%= link_to("Edit", {:action => 'edit', :id => ranch.id}, :class => 'buttons') %>
<%= link_to("Delete", {:action => 'delete', :id => ranch.id}, :class => 'buttons') %>
</td>
</tr>
<% end %>
</table>