Sha256: dcfc9dabe505806431bf0bccd90c5323cb35ea792409cc397eb9834fe57eafd3

Contents?: true

Size: 730 Bytes

Versions: 1

Compression:

Stored size: 730 Bytes

Contents

<h1>Pages</h1>

<table class="table">
  <thead>
    <tr>
      <th>Title</th>
      <th>Key</th>
      <th>Created</th>
      <th></th>
    </tr>
  </thead>

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

<br>

<%= link_to 'New Page', new_page_path, class: 'btn btn-default' %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mo_page-0.0.2 app/views/mo_page/pages/index.html.erb