mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
2214237c39
The sample application with the Getting Started Guide was very out of
date. I've re-done it on edge (as of 51b9def5bf
) so it should
be good to go with Rails 4. It's also in synch with what the guide
actually says.
21 lines
522 B
Text
21 lines
522 B
Text
<h1>Listing Posts</h1>
|
|
<table>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Text</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
|
|
<% @posts.each do |post| %>
|
|
<tr>
|
|
<td><%= post.title %></td>
|
|
<td><%= post.text %></td>
|
|
<td><%= link_to 'Show', action: :show, id: post.id %></td>
|
|
<td><%= link_to 'Edit', action: :edit, id: post.id %></td>
|
|
<td><%= link_to 'Destroy', { action: :destroy, id: post.id },
|
|
method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|