Sha256: 31468003483126f5dda56360763c24b1df9a846b7ce044a397a830fda241e97f

Contents?: true

Size: 669 Bytes

Versions: 5

Compression:

Stored size: 669 Bytes

Contents

<h1>Listing users</h1>

<table>
  <thead>
    <tr>
      <th>Username</th>
      <th>Email</th>
      <th>Password digest</th>
      <th></th>
      <th></th>
      <th></th>
    </tr>
  </thead>

  <tbody>
    <% @users.each do |user| %>
      <tr>
        <td><%= user.username %></td>
        <td><%= user.email %></td>
        <td><%= user.password_digest %></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

5 entries across 5 versions & 1 rubygems

Version Path
arcadex-1.3.1 test/test_app/engines/people/app/views/people/users/index.html.erb
arcadex-1.3.0 test/test_app/engines/people/app/views/people/users/index.html.erb
arcadex-1.2.3 test/test_app/engines/people/app/views/people/users/index.html.erb
arcadex-1.2.1 test/test_app/engines/people/app/views/people/users/index.html.erb
arcadex-1.2.0 test/test_app/engines/people/app/views/people/users/index.html.erb