Authors Listing

Authors List

<%= link_to "Create New", new_admin_author_path, :class => "btn btn-default create-new hvr-box-shadow-outset" %>
<% if !@authors.nil? && @authors.present? %>
<% @authors.each_with_index do |author,index| %> <% end %>
SL.No Name Number of Articles Actions
<%= index + 1 %> <%= author.name %> <%= Article.where(:author_id => author.id).count %> <%= link_to "Edit", edit_admin_author_path(author), :class => "btn btn-warning btn-sm hvr-box-shadow-outset" %> <%= link_to "View", admin_author_path(author), :class => "btn btn-info btn-sm hvr-box-shadow-outset" %>
<% end %>