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

Version Path
iron_warbler-2.0.7.8 app/views/iro/profiles/index.html.erb
iron_warbler-2.0.7.7 app/views/iro/profiles/index.html.erb
iron_warbler-2.0.7.6 app/views/iro/profiles/index.html.erb
iron_warbler-2.0.7.5 app/views/iro/profiles/index.html.erb
iron_warbler-2.0.7.4 app/views/iro/profiles/index.html.erb
iron_warbler-2.0.7.3 app/views/iro/profiles/index.html.erb
iron_warbler-2.0.7.2 app/views/iro/profiles/index.html.erb
iron_warbler-2.0.7.1 app/views/iro/profiles/index.html.erb
iron_warbler-2.0.7 app/views/iro/profiles/index.html.erb
iron_warbler-2.0.6 app/views/iro/profiles/index.html.erb
iron_warbler-2.0.5 app/views/iro/profiles/index.html.erb
iron_warbler-2.0.4 app/views/iro/profiles/index.html.erb
iron_warbler-2.0.3 app/views/iro/profiles/index.html.erb
iron_warbler-2.0.2 app/views/iro/profiles/index.html.erb
iron_warbler-2.0.1 app/views/iro/profiles/index.html.erb