Sha256: 40587e431fe4b90e09086b22858667d2ffe95f8291326c32a9451c5c04112575

Contents?: true

Size: 537 Bytes

Versions: 2

Compression:

Stored size: 537 Bytes

Contents

<p id="notice"><%= notice %></p>

<h1>Users</h1>

<table>
  <thead>
    <tr>
      <th>Email</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @users.each do |user| %>
      <tr>
        <td><%= user.email %></td>
        <td><%= link_to 'Show', user %></td>
        <td><%= link_to 'Edit', edit_user_path(user) %></td>
        <td><%= link_to 'Destroy', user, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New User', new_user_path %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mvpkit-1.1.1 project/app/engines/admin/app/views/admin/users/index.html.erb
mvpkit-1.1.0 project/app/engines/admin/app/views/admin/users/index.html.erb