It isn't very intuitive that this link points to the stats page, but since it's the only page linking to it and there's no link pointing to it in the admin navigation, I guess it's better than offering no clue at all of the current whereabouts.
23 lines
499 B
Plaintext
23 lines
499 B
Plaintext
<%= back_link_to admin_stats_path %>
|
|
|
|
<h2><%= t("admin.verifications.index.title") %></h2>
|
|
|
|
<%= render "admin/shared/user_search", url: search_admin_verifications_path %>
|
|
|
|
<h3><%= page_entries_info @users %></h3>
|
|
|
|
<table>
|
|
<% @users.each do |user| %>
|
|
<tr id="<%= dom_id(user) %>">
|
|
<td>
|
|
<%= link_to user.name, admin_hidden_user_path(user) %>
|
|
</td>
|
|
<td>
|
|
<%= render "pending_step", user: user %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
|
|
<%= paginate @users %>
|