28 lines
787 B
Plaintext
28 lines
787 B
Plaintext
<%= render HeaderComponent.new(title: "User: #{@user.address}") %>
|
|
|
|
<%= render MainSimpleComponent.new do %>
|
|
<section>
|
|
<h3>Account</h3>
|
|
<table class="w-1/2 divided">
|
|
<tbody>
|
|
<tr>
|
|
<th>Created at</th>
|
|
<td><%= @user.created_at.strftime("%Y-%m-%d (%H:%M UTC)") %></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Confirmed at</th>
|
|
<td><%= @user.confirmed_at.strftime("%Y-%m-%d (%H:%M UTC)") %></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Email</th>
|
|
<td><%= @user.email %></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Invited by</th>
|
|
<td><%= @inviter ? link_to(@inviter.address, admin_user_path(@inviter.address), class: 'ks-text-link') : "—" %></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
<% end %>
|