Sha256: 4e080af32b726595cea6dbc1d55958f572f09b7bbc4b623e4123fae7c9e33eca
Contents?: true
Size: 489 Bytes
Versions: 19
Compression:
Stored size: 489 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Listing Users</h1> <table> <thead> <tr> <th colspan="3"></th> </tr> </thead> <tbody> <% @users.each do |user| %> <tr> <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
19 entries across 19 versions & 3 rubygems