Sha256: 4d1e7bc072b9bfde0df854da6de940b8eb7545d589e00d461c470d30b5247525

Contents?: true

Size: 423 Bytes

Versions: 1

Compression:

Stored size: 423 Bytes

Contents

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

<h1>Items</h1>

<%= link_to 'New Item', new_item_path %>

<table>
  <thead>
    <tr>
      <th>Name</th>
      <th>Active</th>
      <th>URL</th>
    </tr>
  </thead>

  <tbody>
    <% @items.each do |item| %>
      <tr>
        <td><%= item.name %></td>
        <td><%= item.active ? "true" : "false" %></td>
        <td><%= item.url %></td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
simple_form-bulma-0.1.0 app/views/simple_form/bulma/items/index.html.erb