Guest User

Untitled

a guest
Sep 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <% listing "app/views/purchases/index.html.erb", :id => "ch01_687" do %>
  2. <%% @purchases.each do |purchase| %>
  3. <tr>
  4. <td><%%= purchase.name %></td>
  5. <td><%%= purchase.cost %></td>
  6. <td><%%= link_to 'Show', purchase %></td>
  7. <td><%%= link_to 'Edit', edit_purchase_path(purchase) %></td>
  8. <td><%%= link_to 'Destroy', purchase, :confirm => 'Are you sure?',
  9. :method => :delete %></td>
  10. </tr>
  11. <%% end %>
  12. </table>
  13.  
  14. <br />
  15.  
  16. <%%= link_to 'New Purchase', new_purchase_path %>
  17. <% end %>
Add Comment
Please, Sign In to add comment