akkounts/app/views/invitations/index.html.erb

24 lines
509 B
Plaintext

<section>
<h2>Invitations</h2>
<table>
<thead>
<tr>
<th>Token</th>
<th>Created at</th>
<th colspan="3"></th>
</tr>
</thead>
<tbody>
<% @invitations.each do |invitation| %>
<tr>
<td><%= invitation.token %></td>
<td><%= invitation.created_at %></td>
<td><%= link_to 'Delete', invitation, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
</section>