Sha256: eb08ae0b28f8f6af9a2471d30333f6ae211070e8b1ae48ec94923cbb5bb7f889
Contents?: true
Size: 1.14 KB
Versions: 4
Compression:
Stored size: 1.14 KB
Contents
<!-- Main Content --> <div class="wrapper wrapper-content"> <div class="panel panel-default"> <div class="panel-heading"> <i class="fa fa-newspaper-o"></i> News Post List </div> <div class="panel-body"> <table class="table table-bordered table-striped table-hover"> <thead> <tr> <th>Post Name</th> <th>Post Text</th> <th>Post Status</th> <th></th> </tr> </thead> <tbody> <% @news_posts.each do |news_post| %> <tr> <td><%= news_post.newspsttitle %></td> <td><%= news_post.newspsttext %></td> <td><%= news_post.pststatus %></td> <td><div class="btn-group" role="group" aria-label="News Articles"> <%= link_to 'Show', news_post, class: "btn btn-primary btn-xs" %> <%= link_to 'Edit', edit_news_post_path(news_post), class: "btn btn-primary btn-xs" %> <%= link_to 'Destroy', news_post, class: "btn btn-danger btn-xs", method: :delete, data: { confirm: 'Are you sure?' } %> </div></td> </tr> <% end %> </tbody> </table> <%= link_to 'New Post', new_news_post_path, class: "btn btn-default" %> </div> </div> </div>
Version data entries
4 entries across 4 versions & 1 rubygems