Sha256: 21a64f5e747cd3540a396944a2b07d0cf7014d7ca15bb6566f7c73d18400d11c

Contents?: true

Size: 649 Bytes

Versions: 3

Compression:

Stored size: 649 Bytes

Contents

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

<h1>Pages</h1>

<table>
  <thead>
    <tr>
      <th>Header</th>
      <th>Title</th>
      <th>Page</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @pages.each do |page| %>
      <tr>
        <td><%= page.header %></td>
        <td><%= page.title %></td>
        <td><%= page.page %></td>
        <td><%= link_to 'Show', page %></td>
        <td><%= link_to 'Edit', edit_page_path(page) %></td>
        <td><%= link_to 'Destroy', page, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Page', new_page_path %>

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
trix_on_rails-0.2.0 test/dummy/app/views/pages/index.html.erb
trix_add_on-0.1.4 test/dummy/app/views/pages/index.html.erb
trix_add_on-0.1.3 test/dummy/app/views/pages/index.html.erb