Sha256: 40a3539e453649e21d19317fadfb4040e0d75c53f4ca1cd39972aa51bee97126
Contents?: true
Size: 635 Bytes
Versions: 10
Compression:
Stored size: 635 Bytes
Contents
<h1>Articles</h1> <table class="table table-striped"> <thead> <tr> <th>Name</th> <th>Actions</th> </tr> </thead> <tbody> <% @articles.each do |article| %> <tr> <td><%= article.name %></td> <td> <%= link_to 'Edit', kuztuscms.edit_article_path(article), :class => 'btn btn-mini' %> <%= link_to 'Destroy', kuztuscms.article_path(article), :method => :delete, :confirm => 'Are you sure?', :class => 'btn btn-mini btn-danger' %> </td> </tr> <% end %> </tbody> </table> <%= link_to 'New', kuztuscms.new_article_path, :class => 'btn btn-primary' %>
Version data entries
10 entries across 10 versions & 1 rubygems