32 lines
856 B
Text
32 lines
856 B
Text
<h1>Listing articles</h1>
|
|
|
|
<%= link_to 'New article', new_article_path %>
|
|
|
|
<div class="row">
|
|
<table class="column">
|
|
<thead>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Text</th>
|
|
<th> </th>
|
|
<th> </th>
|
|
<th> </th>
|
|
<th colspan="3"></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @articles.each do |article| %>
|
|
<tr>
|
|
<td><%= article.title %></td>
|
|
<td colspan="4"><%= article.text %></td>
|
|
<td><%= link_to 'Show', article_path(article) %></td>
|
|
<td><%= link_to 'Edit', edit_article_path(article) %></td>
|
|
<td><%= link_to 'Delete', article_path(article),
|
|
method: :delete,
|
|
data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|