blob: 3ba7091c15d012f2ada2511d67712a36b80ab071 (
plain) (
tree)
|
|
<h1>Listing posts</h1>
<%= link_to 'New post', :action => :new %>
<table>
<tr>
<th>Title</th>
<th>Text</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><%= link_to 'Edit', :action => :edit, :id => post.id %>
</tr>
<% end %>
</table>
|