Sha256: 1bdf429ffae9640fed2420eecf113099e9e3cfc5b94e01d5c5f0c52925f6233d
Contents?: true
Size: 694 Bytes
Versions: 15
Compression:
Stored size: 694 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Profiles</h1> <table> <thead> <tr> <th>Email</th> <th>Role name</th> <th>User</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @profiles.each do |profile| %> <tr> <td><%= profile.email %></td> <td><%= profile.role_name %></td> <td><%= profile.user_id %></td> <td><%= link_to 'Show', profile %></td> <td><%= link_to 'Edit', edit_profile_path(profile) %></td> <td><%= link_to 'Destroy', profile, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Profile', new_profile_path %>
Version data entries
15 entries across 15 versions & 1 rubygems