aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code/getting_started/app/views/posts/index.html.erb
blob: 9a0e90eadc92cd208437bb3ff72a7da13cacd67f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<h1>Listing posts</h1>

<%= link_to 'New post', :action => :new %>

<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><%= link_to 'Edit', :action => :edit, :id => post.id %>
    <td><%= link_to 'Destroy', { :action => :destroy, :id => post.id }, :method => :delete, :data => { :confirm => 'Are you sure?' } %>
  </tr>
<% end %>
</table>