2018-04-02 01:24:50 +00:00
|
|
|
- processed_bio = FrontmatterHandler.instance.process_bio Formatter.instance.simplified_format(account, custom_emojify: true)
|
2017-05-08 01:35:25 +00:00
|
|
|
.card.h-card.p-author{ style: "background-image: url(#{account.header.url(:original)})" }
|
2017-08-16 15:12:58 +00:00
|
|
|
.card__illustration
|
2018-02-26 15:18:41 +00:00
|
|
|
= render 'accounts/follow_button', account: account
|
2017-08-16 15:12:58 +00:00
|
|
|
.avatar= image_tag account.avatar.url(:original), class: 'u-photo'
|
|
|
|
|
|
|
|
.card__bio
|
|
|
|
%h1.name
|
2018-05-06 09:48:51 +00:00
|
|
|
%span.p-name.emojify= display_name(account, custom_emojify: true)
|
2018-04-16 15:19:04 +00:00
|
|
|
%small<
|
|
|
|
%span>< @#{account.local_username_and_domain}
|
2017-08-16 15:12:58 +00:00
|
|
|
= fa_icon('lock') if account.locked?
|
|
|
|
|
2018-05-07 07:31:07 +00:00
|
|
|
- if account.bot?
|
|
|
|
.roles
|
|
|
|
.account-role.bot
|
|
|
|
= t 'accounts.roles.bot'
|
|
|
|
- elsif Setting.show_staff_badge
|
2017-11-19 03:13:57 +00:00
|
|
|
- if account.user_admin?
|
|
|
|
.roles
|
|
|
|
.account-role.admin
|
|
|
|
= t 'accounts.roles.admin'
|
|
|
|
- elsif account.user_moderator?
|
|
|
|
.roles
|
|
|
|
.account-role.moderator
|
|
|
|
= t 'accounts.roles.moderator'
|
2016-03-19 13:02:30 +00:00
|
|
|
.bio
|
2017-06-28 07:27:44 +00:00
|
|
|
.account__header__content.p-note.emojify!=processed_bio[:text]
|
2016-10-03 14:10:17 +00:00
|
|
|
|
2018-04-29 14:24:15 +00:00
|
|
|
- if !account.fields.empty?
|
2018-05-04 22:55:09 +00:00
|
|
|
.account__header__fields
|
|
|
|
- account.fields.each do |field|
|
|
|
|
%dl
|
|
|
|
%dt.emojify{ title: field.name }= field.name
|
2018-05-06 09:48:51 +00:00
|
|
|
%dd.emojify{ title: field.value }= Formatter.instance.format_field(account, field.value, custom_emojify: true)
|
2018-04-29 14:24:15 +00:00
|
|
|
- elsif processed_bio[:metadata].length > 0
|
2018-05-09 15:43:30 +00:00
|
|
|
.account__header__fields
|
2018-04-29 14:24:15 +00:00
|
|
|
- processed_bio[:metadata].each do |i|
|
2018-05-09 15:43:30 +00:00
|
|
|
%dl
|
|
|
|
%dt.emojify{ title: i[0] }= i[0]
|
|
|
|
%dd.emojify{ title: i[1] }= i[1]
|
2018-04-14 10:41:08 +00:00
|
|
|
|
2016-10-03 14:10:17 +00:00
|
|
|
.details-counters
|
2017-04-16 14:37:49 +00:00
|
|
|
.counter{ class: active_nav_class(short_account_url(account)) }
|
|
|
|
= link_to short_account_url(account), class: 'u-url u-uid' do
|
2017-09-18 02:55:23 +00:00
|
|
|
%span.counter-number= number_to_human account.statuses_count, strip_insignificant_zeros: true
|
2017-08-16 15:12:58 +00:00
|
|
|
%span.counter-label= t('accounts.posts')
|
|
|
|
|
2017-04-19 11:52:37 +00:00
|
|
|
.counter{ class: active_nav_class(account_following_index_url(account)) }
|
|
|
|
= link_to account_following_index_url(account) do
|
2017-09-18 02:55:23 +00:00
|
|
|
%span.counter-number= number_to_human account.following_count, strip_insignificant_zeros: true
|
2017-08-16 15:12:58 +00:00
|
|
|
%span.counter-label= t('accounts.following')
|
|
|
|
|
2017-04-19 11:52:37 +00:00
|
|
|
.counter{ class: active_nav_class(account_followers_url(account)) }
|
|
|
|
= link_to account_followers_url(account) do
|
2017-09-18 02:55:23 +00:00
|
|
|
%span.counter-number= number_to_human account.followers_count, strip_insignificant_zeros: true
|
2017-08-16 15:12:58 +00:00
|
|
|
%span.counter-label= t('accounts.followers')
|