Retrospring/app/views/actions/_pin.html.haml

15 lines
455 B
Plaintext
Raw Normal View History

- if answer.pinned?
2023-02-06 23:36:29 -08:00
= button_to unpin_answer_path(id: answer.id),
class: "dropdown-item",
method: :delete,
form: { id: "ab-pin-#{answer.id}", data: { turbo_stream: true } } do
%i.fa.fa-fw.fa-thumbtack
= t(".unpin")
- else
= button_to pin_answer_path(id: answer.id),
class: "dropdown-item",
method: :post,
form: { id: "ab-pin-#{answer.id}", data: { turbo_stream: true } } do
%i.fa.fa-fw.fa-thumbtack
= t(".pin")