ruby-paypal-example/app/views/payments/index.html.erb

24 lines
481 B
Plaintext
Raw Normal View History

2013-04-30 05:55:08 +00:00
<h1>Listing payments</h1>
<table>
<tr>
<th>Profile</th>
<th></th>
<th></th>
<th></th>
</tr>
<% @payments.each do |payment| %>
<tr>
<td><%= payment.profile %></td>
<td><%= link_to 'Show', payment %></td>
<td><%= link_to 'Edit', edit_payment_path(payment) %></td>
<td><%= link_to 'Destroy', payment, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</table>
<br />
<%= link_to 'New Payment', new_payment_path %>