Sha256: 7ac283b17a9fdedfad579543084931985c34e0a566b197dbd46bb91fd675cbb4
Contents?: true
Size: 593 Bytes
Versions: 9
Compression:
Stored size: 593 Bytes
Contents
<p id="notice"><%= notice %></p> <p> <strong>Name:</strong> <%= @profile.name %> </p> <p> <strong>Description:</strong> <%= @profile.description %> </p> <table> <div class="table-header"> <div class="text-sm"> <strong>List of Roles</strong> </div> </div> <thead> <tr> <th>Name</th> <th>Description</th> </tr> </thead> <tbody> <% @profile.roles.each do |role| %> <tr> <td><%= role.name %></td> <td><%= role.description %></td> </tr> <% end %> </tbody> </table> <%= link_to 'Back', profiles_path %>
Version data entries
9 entries across 9 versions & 1 rubygems