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

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