Sha256: 84306c3a846b6adc8da546d27325d1345cbfa24b9168a3c7323f02264692fb10

Contents?: true

Size: 563 Bytes

Versions: 2

Compression:

Stored size: 563 Bytes

Contents

<h1>Listing pages</h1>

<table>
  <tr>
    <th>Title</th>
    <th>Body</th>
    <th>Impression Count</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

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

<br />

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
impressionizer-0.0.3 spec/dummy/app/views/pages/index.html.erb
impressionizer-0.0.2 test/dummy/app/views/pages/index.html.erb