Sha256: fb4c565edb1c8a5dcfd0cc9d8178061ae1f6ef0b02f6831f2500d92115f9d165

Contents?: true

Size: 645 Bytes

Versions: 22

Compression:

Stored size: 645 Bytes

Contents

<h1>Listing posts</h1>

<table>
  <thead>
    <tr>
      <th>Name</th>
      <th>Title</th>
      <th>Content</th>
      <th></th>
      <th></th>
      <th></th>
    </tr>
  </thead>

  <tbody>
    <% @posts.each do |post| %>
      <tr>
        <td><%= post.name %></td>
        <td><%= post.title %></td>
        <td><%= post.content %></td>
        <td><%= link_to 'Show', post %></td>
        <td><%= link_to 'Edit', edit_post_path(post) %></td>
        <td><%= link_to 'Destroy', post, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Post', new_post_path %>

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
warbler-1.4.10 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-2.0.2 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-2.0.1 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-2.0.0 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-2.0.0.rc3 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-2.0.0.rc2 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-2.0.0.rc1 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-2.0.0.pre3 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-2.0.0.pre2 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-1.4.9 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-1.4.8 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-2.0.0.pre1 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-1.4.7 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-1.4.6 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-1.4.5 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-1.4.4 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-1.4.3 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-1.4.2 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-1.4.1 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb
warbler-1.4.0 integration/rails4_test/src/main/ruby/app/views/posts/index.html.erb