61 lines
2.1 KiB
Plaintext
61 lines
2.1 KiB
Plaintext
<%= render HeaderComponent.new(title: "Invitations") %>
|
|
|
|
<%= render MainSimpleComponent.new do %>
|
|
<section>
|
|
<% if @invitations_unused.any? %>
|
|
<p class="mb-8">
|
|
Invite your friends to a Kosmos account by sharing an invitation URL with them:
|
|
</p>
|
|
<ul>
|
|
<% @invitations_unused.each do |invitation| %>
|
|
<li class="font-mono mb-1 flex gap-1 md:block"
|
|
data-controller="clipboard">
|
|
<input type="text" disabled class="md:w-3/4 flex-1"
|
|
value="<%= invitation_url(invitation.token) %>"
|
|
data-clipboard-target="source" />
|
|
<button id="copy-user-address" class="btn-md btn-icon btn-blue flex-none w-auto"
|
|
data-clipboard-target="trigger" data-action="clipboard#copy"
|
|
title="Copy to clipboard">
|
|
<span class="content-initial">
|
|
<%= render partial: "icons/copy", locals: { custom_class: "text-white h-4 w-4 inline" } %>
|
|
</span>
|
|
<span class="content-active hidden">
|
|
<%= render partial: "icons/check", locals: { custom_class: "text-white h-4 w-4 inline" } %>
|
|
</span>
|
|
</button>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|
|
<% else %>
|
|
<p>
|
|
You do not have any invitations to give away yet. We will notify you,
|
|
as soon as you can invite others.
|
|
</p>
|
|
<% end %>
|
|
</section>
|
|
|
|
<% if @invitations_used.any? %>
|
|
<section>
|
|
<h3>Accepted Invitations</h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th class="hidden md:block">ID</th>
|
|
<th>Accepted</th>
|
|
<th>Invited user</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @invitations_used.each do |invitation| %>
|
|
<tr>
|
|
<td class="hidden md:block font-mono"><%= invitation.token %></td>
|
|
<td><%= invitation.used_at.strftime("%Y-%m-%d") %></td>
|
|
<td><%= User.find(invitation.invited_user_id).address %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
<% end %>
|
|
<% end %>
|