2022-11-21 13:30:15 -08:00
|
|
|
%li.list-group-item{ id: "block_#{block.id}" }
|
2022-08-13 11:01:22 -07:00
|
|
|
.d-flex
|
|
|
|
%div
|
|
|
|
- if block.question.present?
|
|
|
|
%p.mb-0= block.question.content
|
|
|
|
- else
|
|
|
|
%p.mb-0.text-muted.font-italic= t(".deleted_question")
|
|
|
|
%p.text-muted.mb-0= t(".blocked", time: time_ago_in_words(block.created_at))
|
|
|
|
.ml-auto.d-inline-flex
|
2022-11-21 13:30:15 -08:00
|
|
|
= button_to anonymous_block_path, method: :delete, params: { id: block.id }, class: "btn btn-default align-self-center" do
|
|
|
|
%span.pe-none= t("voc.unblock")
|