Sha256: b361e4bc8ba4357324ae3e55defd31e9817e5edf31f8cdd6cdc71eae1f463af7

Contents?: true

Size: 801 Bytes

Versions: 1

Compression:

Stored size: 801 Bytes

Contents

<h1>Listing selections</h1>

<table>
  <tr>
    <th>Name</th>
    <th>Parent</th>
    <th>System code</th>
    <th>Position</th>
    <th>Is default</th>
    <th>Is system</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @selections.each do |selection| %>
  <tr>
    <td><%= selection.name %></td>
    <td><%= selection.parent_id %></td>
    <td><%= selection.system_code %></td>
    <td><%= selection.position %></td>
    <td><%= selection.is_default %></td>
    <td><%= selection.is_system %></td>
    <td><%= link_to 'Show', selection %></td>
    <td><%= link_to 'Edit', edit_selection_path(selection) %></td>
    <td><%= link_to 'Destroy', selection, confirm: 'Are you sure?', method: :delete %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New Selection', new_selection_path %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
selections-0.0.1 app/views/selections/selections/index.html.erb