Skip to content

Instantly share code, notes, and snippets.

View wildjcrt's full-sized avatar
🦀
have a nice day!

Jerry Lee wildjcrt

🦀
have a nice day!
View GitHub Profile
<%= render_table(@products,
[
["ID", lambda { |p| p.id }],
["名稱", lambda { |p| p.name }],
["動作", lambda { |p|
link_to("Show", admin_product_path(p)) + ' | ' +
link_to("Edit", edit_admin_product_path(p)) + ' | ' +
link_to("Delete", admin_product_path(p), :confirm => "Are you sure?", :method => :delete )}]
],
:class_name => "table"