Sha256: dd9cd768a8feb4402b25669d0c10879a10847417dd688c036efd081c68885b1b

Contents?: true

Size: 669 Bytes

Versions: 1

Compression:

Stored size: 669 Bytes

Contents

<h1>Listing page_comments</h1>

<table>
  <thead>
    <tr>
      <th>Requst uri</th>
      <th>Content</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @page_comments.each do |page_comment| %>
      <tr>
        <td><%= page_comment.requst_uri %></td>
        <td><%= page_comment.content %></td>
        <td><%= link_to 'Show', page_comment %></td>
        <td><%= link_to 'Edit', edit_page_comment_path(page_comment) %></td>
        <td><%= link_to 'Destroy', page_comment, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Page comment', new_page_comment_path %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rails_page_comment-0.0.3 app/views/rails_page_comment/page_comments/index.html.erb