Sha256: b7959d439cf70d86f15cb60e4f1bb8739406100808606b3f190bad4db71d4278
Contents?: true
Size: 565 Bytes
Versions: 2
Compression:
Stored size: 565 Bytes
Contents
<h1>Listing users</h1> <table> <thead> <tr> <th>Name</th> <th>Email</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @users.each do |user| %> <tr> <td><%= user.name %></td> <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 |
---|---|
action_mailer_kafka-1.0.0 | example/app/views/users/index.html.erb |
action_mailer_kafka-0.1.0 | example/app/views/users/index.html.erb |