1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/guides/code/getting_started/app/views/posts/index.html.erb

19 lines
330 B
Text

<h1>Listing posts</h1>
<%= link_to 'New post', :action => :new %>
<table>
<tr>
<th>Title</th>
<th>Text</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 %>
</tr>
<% end %>
</table>