47 lines
1.0 KiB
Plaintext
47 lines
1.0 KiB
Plaintext
<section>
|
|
<h2>Invitations</h2>
|
|
<% if @invitations_unused.any? %>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>URL</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @invitations_unused.each do |invitation| %>
|
|
<tr>
|
|
<td><%= invitation_url(invitation.token) %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% else %>
|
|
<p>
|
|
You do not have any invitations to give away yet. All good
|
|
things come in time.
|
|
</p>
|
|
<% end %>
|
|
</section>
|
|
|
|
<% if @invitations_used.any? %>
|
|
<h3>Accepted Invitations</h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>URL</th>
|
|
<th>Used at</th>
|
|
<th>Invited user</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @invitations_used.each do |invitation| %>
|
|
<tr>
|
|
<td><%= invitation_url(invitation.token) %></td>
|
|
<td><%= invitation.used_at %></td>
|
|
<td><%= User.find(invitation.invited_user_id).address %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% end %>
|