= link_to multimedium_path(f), method: :delete, data: { confirm: 'Are you sure to delete this multimedia?' } do
i.fa.fa-trash.fa-lg.mr-2.text-danger
When i use link_to, the button is redirecting me to show method of the multimedia controller.
Using button_to
solves this problem, but the confirm
is not working properly.
= button_to multimedium_path(f), method: :delete, data: { confirm: 'Are you sure to delete this multimedia?' } do
i.fa.fa-trash.fa-lg.mr-2.text-danger
Can someone explain to me what is happening? Thank you!!!