Sha256: da7c0a3a93162960c8462d1714643fb02f09aa8a442f2d7122377dc18a0ffdbb
Contents?: true
Size: 604 Bytes
Versions: 2
Compression:
Stored size: 604 Bytes
Contents
<h1>Listing articles</h1> <table> <thead> <tr> <th>Title</th> <th>Content</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @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, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Article', new_article_path %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rails_sandbox_server-0.0.3 | test/dummy/app/views/articles/index.html.erb |
rails_sandbox_server-0.0.2 | test/dummy/app/views/articles/index.html.erb |