Sha256: d6fd686d594f318495f56ca9b8bf27bf55ed21dd8dbc990ec85191e20fba75bd

Contents?: true

Size: 699 Bytes

Versions: 2

Compression:

Stored size: 699 Bytes

Contents

<p id="notice"><%= notice %></p>

<h1>Stick Records</h1>

<table>
  <thead>
    <tr>
      <th>Identifier</th>
      <th>Modifiers</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @stick_records.each do |stick_record| %>
      <tr>
        <td><%= stick_record.identifier %></td>
        <td><%= stick_record.modifiers %></td>
        <td><%= link_to 'Show', stick_record %></td>
        <td><%= link_to 'Edit', edit_stick_record_path(stick_record) %></td>
        <td><%= link_to 'Destroy', stick_record, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Stick Record', new_stick_record_path %>

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
ezii-browser-1.0.0 server/redux-os/app/views/stick_records/index.html.erb
mega-os-1.0.0 app/views/stick_records/index.html.erb