Sha256: 133bcb9bb16bb6fe31eeef0738fdbf572e26ec7f954f7e2f78a2d30679780996
Contents?: true
Size: 571 Bytes
Versions: 6
Compression:
Stored size: 571 Bytes
Contents
<h1>Listing articles</h1> <table> <tr> <th>Title</th> <th>Body</th> <th>Extra</th> <th></th> <th></th> <th></th> </tr> <% @articles.each do |article| %> <tr> <td><%= article.title %></td> <td><%= article.body %></td> <td><%= article.extra %></td> <td><%= link_to 'Show', article %></td> <td><%= link_to 'Edit', edit_article_path(article) %></td> <td><%= link_to 'Destroy', article, confirm: 'Are you sure?', method: :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Article', new_article_path %>
Version data entries
6 entries across 6 versions & 1 rubygems