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

Version Path
arpa-0.1.0 lib/generators/arpa/templates/views/profiles/show.html.erb
arpa-0.0.9 lib/generators/arpa/templates/views/profiles/show.html.erb
arpa-0.0.8 lib/generators/arpa/templates/views/profiles/show.html.erb
arpa-0.0.7 lib/generators/arpa/templates/views/profiles/show.html.erb
arpa-0.0.6 lib/arpa/views/profiles/show.html.erb
arpa-0.0.5 lib/arpa/views/profiles/show.html.erb
arpa-0.0.4 lib/arpa/views/profiles/show.html.erb
arpa-0.0.3 lib/arpa/views/profiles/show.html.erb
arpa-0.0.2 lib/arpa/views/profiles/show.html.erb