in place editor in an index action

How do you do an in_place_editor_field in a for loop so each item will have that available like in an index action? Is it possible?

<% for note in @notes %>   <tr>     <td><%=h note.label %></td>     <td><%=h note.start_time %></td>     <td><%=h note.end_time %></td>     <td><%= in_place_editor_field :note, :log %></td>     <td><%= link_to 'Show', note %></td>     <td><%= link_to 'Edit', edit_note_path(note) %></td>     <td><%= link_to 'Destroy', note, :confirm => 'Are you sure?', :method => :delete %></td>   </tr> <% end %>