24 lines
481 B
Plaintext
24 lines
481 B
Plaintext
|
<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 %>
|