aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code/getting_started/app/views/articles/index.html.erb
blob: 80e9c8c60c2b905729e630d6a734e08ff4f36b86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<h1>Listing Articles</h1>
<table>
  <tr>
    <th>Title</th>
    <th>Text</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @articles.each do |article| %>
  <tr>
    <td><%= article.title %></td>
    <td><%= article.text %></td>
    <td><%= link_to 'Show', action: :show, id: article.id %></td>
    <td><%= link_to 'Edit', action: :edit, id: article.id %></td>
    <td><%= link_to 'Destroy', { action: :destroy, id: article.id },
                    method: :delete, data: { confirm: 'Are you sure?' } %></td>
  </tr>
<% end %>
</table>