Sha256: c022b30c9ae21ba379b962b8d1fcee77b21c685a68e5060d94c00b89ca6885ba
Contents?: true
Size: 580 Bytes
Versions: 11
Compression:
Stored size: 580 Bytes
Contents
<h1>Listing articles</h1> <table> <tr> <th>Title</th> <th>Content</th> <th></th> <th></th> <th></th> </tr> <% @articles.each do |article| %> <tr> <td><%= article.title %></td> <td><%= article.content %></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 %> <%= link_to 'Excel', articles_path(:format => :xlsx) %>
Version data entries
11 entries across 11 versions & 2 rubygems