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