Sha256: 87464276d8f3106cbbd5663a230d3cef6a7d62139455c697e2dba2257aa75785

Contents?: true

Size: 340 Bytes

Versions: 1

Compression:

Stored size: 340 Bytes

Contents

<h1>users</h1>

<table>
  <tr>
    <th>Id</th>
    <th>Email</th>
    <th>Name</th>
  </tr>

<% @users.each do |user| %>
  <tr>
    <td><%= user.id %></td>
    <td><%= "***" || user.email %></td>
    <td><%= user.name %></td>
  </tr>
<% end %>
</table>

<br />

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
as_user-0.0.3 app/views/as_user/users/index.html.erb