Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <tr class="delete_product_<%=product.id%>" id="<%=dom_id(product)%>">
  2. <td id="data_<%=product.id%>">
  3. <%=product.id%>
  4. </td>
  5. <td>
  6. <%=product.product_name%>
  7. </td>
  8. <td>
  9. <%=product.product_price%>
  10. </td>
  11. <td>
  12. <%=time_ago(product.created_at)%>
  13. </td>
  14. <td class="text-center">
  15. <%=form_for([:admin, product], remote: true) do |f|%>
  16. <%=link_to admin_product_path(product), remote: true,class: "btn btn-primary", "data-target" => "bd-example-modal-lg-panhara" do %>
  17. View
  18. <%end%>
  19. <%=link_to edit_admin_product_path(product),id: "link_#{product.id}",class: "btn btn-primary", remote: true do %>
  20. Edit
  21. <% end %>
  22. <%end%>
  23. </td>
  24. </tr>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement