Sha256: 2b8d7391475ff042834d9b62d03b701d14cf92201a392118aaeb13ccd6578496
Contents?: true
Size: 624 Bytes
Versions: 185
Compression:
Stored size: 624 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>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
185 entries across 185 versions & 2 rubygems