Sha256: 84b7910898376edf583737070438a62daec9a1c508a3e2bc244367a69334488c
Contents?: true
Size: 681 Bytes
Versions: 9
Compression:
Stored size: 681 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Listing Profiles</h1> <table> <thead> <tr> <th>Name</th> <th>Description</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @profiles.each do |profile| %> <tr> <td><%= profile.name %></td> <td><%= profile.description %></td> <td><%= link_to 'Show', profile_path(profile.id) %></td> <td><%= link_to 'Edit', edit_profile_path(profile.id) %></td> <td><%= link_to 'Destroy', profile_path(profile.id), method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Profile', new_profile_path %>
Version data entries
9 entries across 9 versions & 1 rubygems