2022-06-23 11:03:11 -07:00
|
|
|
.card
|
|
|
|
.card-body
|
2022-06-23 16:13:27 -07:00
|
|
|
%h2= t(".section.blocks.heading")
|
|
|
|
%p= t(".section.blocks.body")
|
2022-06-23 11:03:11 -07:00
|
|
|
%ul.list-group
|
|
|
|
- @blocks.each do |block|
|
|
|
|
%li.list-group-item
|
|
|
|
.d-flex
|
2023-01-04 02:00:45 -08:00
|
|
|
%img.avatar-md.d-none.d-sm-inline.me-2{ src: block.target.profile_picture.url(:small) }
|
2022-06-23 11:03:11 -07:00
|
|
|
%div
|
|
|
|
%p.mb-0= user_screen_name(block.target)
|
2022-06-23 16:13:27 -07:00
|
|
|
%p.text-muted.mb-0= t(".blocked", time: time_ago_in_words(block.created_at))
|
2023-01-04 02:00:45 -08:00
|
|
|
.ms-auto.d-inline-flex
|
2022-06-23 11:03:11 -07:00
|
|
|
%button.btn.btn-default.align-self-center{ data: { action: :unblock, target: block.target.screen_name } }
|
2022-07-30 09:50:46 -07:00
|
|
|
%span.pe-none= t("voc.unblock")
|
2022-06-24 17:02:12 -07:00
|
|
|
|
|
|
|
- if @blocks.empty?
|
|
|
|
%p.text-muted.text-center= t(".none")
|
2022-06-23 11:03:11 -07:00
|
|
|
.card
|
|
|
|
.card-body
|
2022-06-23 16:13:27 -07:00
|
|
|
%h2= t(".section.anon_blocks.heading")
|
|
|
|
%p= t(".section.anon_blocks.body")
|
2022-06-23 11:03:11 -07:00
|
|
|
%ul.list-group
|
|
|
|
- @anonymous_blocks.each do |block|
|
2022-08-13 11:01:22 -07:00
|
|
|
= render "shared/anonymous_block", block:
|
2022-06-23 11:03:11 -07:00
|
|
|
|
2022-06-24 17:02:12 -07:00
|
|
|
- if @anonymous_blocks.empty?
|
|
|
|
%p.text-muted.text-center= t(".none")
|
2022-07-03 12:32:05 -07:00
|
|
|
|
|
|
|
- provide(:title, generate_title(t(".title")))
|
|
|
|
- parent_layout "user/settings"
|