Sha256: 6f7928b9901bbc0e855019bd85c8b213f39fa00e2ea0a4c1ee492e76f43aa9b6
Contents?: true
Size: 707 Bytes
Versions: 1
Compression:
Stored size: 707 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Listing Articles</h1> <table class="table table-striped table-bordered"> <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, class: 'btn-primary btn' %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
blob-0.0.1 | app/views/blob/articles/index.html.erb |