Article List
<%= link_to "Create New", new_admin_article_path, :class => "btn btn-default create-new hvr-box-shadow-outset" %>
<%= link_to "Reorder", "/admin/reorder/articles", :class => "btn btn-default create-new hvr-box-shadow-outset", :style => "margin-right:20px;" %>
| SL.No | Name | Topic | Actions |
|---|---|---|---|
| <%= index + 1 %> | <%= article.title %> | <%= article.anchor_tag.name %> | <%= link_to "View", admin_article_path(article), :class => "btn btn-info btn-sm hvr-box-shadow-outset" %> <%= link_to "Edit", edit_admin_article_path(article), :class => "btn btn-warning btn-sm hvr-box-shadow-outset" %> <% if article.status == "Active" %> <%= link_to "Unpublish", admin_unpublish_post_path(article), method: :delete, data: { confirm: "Are you sure you want to Unpublish ?"}, :class => "btn btn-danger btn-sm hvr-box-shadow-outset" %> <% else %> <%= link_to "Publish", admin_publish_post_path(article), method: :delete, data: { confirm: "Are you sure you want to Publish ?"}, :class => "btn btn-danger btn-sm hvr-box-shadow-outset" %> <% end %> |