Sha256: 9b72f005b36cc372dbe369c2b1a5274c7df2e0f1e78d9e03e27fae69ce4a406a

Contents?: true

Size: 477 Bytes

Versions: 2

Compression:

Stored size: 477 Bytes

Contents

<%- @page_title = "GEOMG - Users" %>


<h1 style="width:100%; margin-bottom:2rem;">
  Users
  <%= link_to '+ New User', new_user_invitation_path, {class: 'btn btn-primary float-right'} %>
</h1>

<table class="table table-striped table-bordered sortable">
  <thead class="thead-dark">
    <tr>
      <th class="header">Email</th>
    <tr>
  <tbody>
    <% @users.each do |user| %>
      <tr>
        <td><%= user.email %><br/></td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
geoblacklight_admin-0.1.0 app/views/admin/users/index.html.erb
geoblacklight_admin-0.0.1 app/views/admin/users/index.html.erb