Sha256: 78f1bfb27bd7f7e8cc9371df8063f6446854a36bb969958677dc48a3cf163864
Contents?: true
Size: 632 Bytes
Versions: 83
Compression:
Stored size: 632 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Listing Articles</h1> <table> <thead> <tr> <th>Title</th> <th>Text</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @articles.each do |article| %> <tr> <td><%= article.title %></td> <td><%= article.text %></td> <td><%= link_to 'Show', article %></td> <td><%= link_to 'Edit', edit_article_path(article) %></td> <td><%= link_to 'Destroy', article, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Article', new_article_path %>
Version data entries
83 entries across 83 versions & 6 rubygems