Sha256: 59a72cf81b0a6355e606fe1700555507c10189614e71b3c5c69b17afe37f9ff3
Contents?: true
Size: 379 Bytes
Versions: 2
Compression:
Stored size: 379 Bytes
Contents
<h2>Show Users</h2> <table> <tr> <th>Email</th> <th>Name</th> <th></th> <th></th> <th></th> </tr> <% @users.each do |user| %> <tr> <td><%= user.email %></td> <td><%= user.name %></td> <td><%= link_to 'Show', user, class: "button" %></td> <td><%= link_to 'Edit', edit_user_path(user), class: "button" %></td> </tr> <% end %> </table>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
oauth2_provider_engine-0.0.2 | test/dummy/app/views/users/index.html.erb |
oauth2_provider_engine-0.0.1 | test/dummy/app/views/users/index.html.erb |