Displaying 1 result from an estimated 1 matches for "edit_book_path".
2011 Feb 03
1
How to transfer a javascript value into a symbol used in Ruby on Rails
...lt;/td>
<td><%=h book.author %></td>
<td><%= book.publishing_date %></td> <!-- Will this work? -->
<td><%= link_to ''Show'', book %></td>
<td><%= link_to ''Edit'', edit_book_path(book) %></td>
<td><%= link_to ''Destroy'', book, :confirm => ''Are you
sure?'', :method => :delete %></td>
</tr>
<% end %>
</table>
<%= will_paginate @books %>
<br />
&...