Sha256: 2635a71ceffb221131d12e3e1f364be7f4ab6d003631b5595a6fc3c51aa88f72

Contents?: true

Size: 379 Bytes

Versions: 1

Compression:

Stored size: 379 Bytes

Contents

<h2>Invitations</h2>

<table>
  <tr>
    <th>Recipient</th>
    <th>Invited At</th>
    <th>Redeemed At</th>
    <th></th>
  </tr>
  
<% @invitations.each do |invite| %>
<tr>
  <td><%= invite.recipient_email %></td>
  <td><%= invite.invited_at %></td>
  <td><%= invite.redeemed_at %></td>
  <td><%= link_to "Redeem Link", signup_url(invite.token) %></td>
</tr>
<% end %>
</table>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tonkapark-clearance-0.6.9.3 app/views/invitations/index.html.erb