<% row.each do |supplier|%>
|
<%= supplier.name%>
|
<%= link_to "Edit", {:controller => "suppliers_distributors", :id => supplier.id, :page_num => params[:page], :type => "supplier", :action => "edit"},{:class => "btn btn-primary"} %>
<%= link_to "Delete", {:controller => "suppliers_distributors", :id => supplier.id, :page_num => params[:page], :type => "supplier", :action => "destroy"}, {data: { confirm: "Are you sure you want to delete this supplier?" },:class => "btn btn-danger"} %>
|
<% end %>
<% end %>