2017-04-16 16:37:49 +02:00
|
|
|
.card.h-card.p-author{ style: "background-image: url(#{account.header.url( :original)})" }
|
|
|
|
- if user_signed_in? && current_account.id != account.id && !current_account.requested?(account)
|
2016-10-06 21:27:58 +02:00
|
|
|
.controls
|
2017-04-16 16:37:49 +02:00
|
|
|
- if current_account.following?(account)
|
2017-04-19 13:52:37 +02:00
|
|
|
= link_to t('accounts.unfollow'), account_unfollow_path(account), data: { method: :post }, class: 'button'
|
2016-10-06 21:27:58 +02:00
|
|
|
- else
|
2017-04-19 13:52:37 +02:00
|
|
|
= link_to t('accounts.follow'), account_follow_path(account), data: { method: :post }, class: 'button'
|
2017-01-06 20:15:24 +01:00
|
|
|
- elsif !user_signed_in?
|
2017-01-01 19:52:25 +01:00
|
|
|
.controls
|
|
|
|
.remote-follow
|
2017-04-16 16:37:49 +02:00
|
|
|
= link_to t('accounts.remote_follow'), account_remote_follow_path(account), class: 'button'
|
|
|
|
.avatar= image_tag account.avatar.url(:original), class: 'u-photo'
|
2016-03-19 14:02:30 +01:00
|
|
|
%h1.name
|
2017-04-16 16:37:49 +02:00
|
|
|
%span.p-name.emojify= display_name(account)
|
2016-12-23 00:04:52 +01:00
|
|
|
%small
|
2017-04-16 16:37:49 +02:00
|
|
|
%span= "@#{account.username}"
|
|
|
|
= fa_icon('lock') if account.locked?
|
2016-03-19 14:02:30 +01:00
|
|
|
.details
|
|
|
|
.bio
|
2017-04-16 16:37:49 +02:00
|
|
|
.account__header__content.p-note.emojify= Formatter.instance.simplified_format(account)
|
2016-10-03 16:10:17 +02:00
|
|
|
|
|
|
|
.details-counters
|
2017-04-16 16:37:49 +02:00
|
|
|
.counter{ class: active_nav_class(short_account_url(account)) }
|
|
|
|
= link_to short_account_url(account), class: 'u-url u-uid' do
|
2016-11-15 23:56:03 +01:00
|
|
|
%span.counter-label= t('accounts.posts')
|
2017-04-16 16:37:49 +02:00
|
|
|
%span.counter-number= number_with_delimiter account.statuses_count
|
2017-04-19 13:52:37 +02:00
|
|
|
.counter{ class: active_nav_class(account_following_index_url(account)) }
|
|
|
|
= link_to account_following_index_url(account) do
|
2016-11-15 23:56:03 +01:00
|
|
|
%span.counter-label= t('accounts.following')
|
2017-04-16 16:37:49 +02:00
|
|
|
%span.counter-number= number_with_delimiter account.following_count
|
2017-04-19 13:52:37 +02:00
|
|
|
.counter{ class: active_nav_class(account_followers_url(account)) }
|
|
|
|
= link_to account_followers_url(account) do
|
2016-11-15 23:56:03 +01:00
|
|
|
%span.counter-label= t('accounts.followers')
|
2017-04-16 16:37:49 +02:00
|
|
|
%span.counter-number= number_with_delimiter account.followers_count
|