gab-social/app/views/application/_card.html.haml
Developer fa74c34095 Added account_flags_block partial to admin pages
• Added:
- account_flags_block partial to admin pages (groups, accounts, reports) so admin/moderators can easily see pro, verified, investor, donor, spam flags of an account
2021-02-18 16:49:14 -05:00

23 lines
1.1 KiB
Plaintext

- account_url = local_assigns[:admin] ? admin_account_path(account.id) : TagManager.instance.url_for(account)
.card.h-card
= link_to account_url, target: '_blank', rel: 'noopener' do
.card__img
= image_tag account.header.url, alt: ''
.card__bar{style: "display:flex;flex-direction:column;align-items:flex-start;"}
%div{style: "display:flex;flex-direction:row;"}
.avatar
= image_tag account.avatar.url, alt: '', width: 48, height: 48, class: 'u-photo'
.display-name
%span{id: "default_account_display_name", style: "display:none;"}= account.username
%span{style: "display:flex;flex-direction:row;align-items:center;"}
%strong.emojify.p-name= display_name(account, custom_emojify: true)
%div{style: "margin-left:auto;"}
= render 'admin/accounts/account_flags_block', :account => @account
%span
= acct(account)
= fa_icon('lock') if account.locked?
%div{style: "display:block;margin-top:10px;"}
%p{style: "display:block;font-size:14px;color:#999;"}= account.note