2017-01-07 06:15:24 +11:00
|
|
|
.card.h-card.p-author{ style: "background-image: url(#{@account.header.url( :original)})" }
|
2016-12-23 09:07:46 +11:00
|
|
|
- if user_signed_in? && current_account.id != @account.id && !current_account.requested?(@account)
|
2016-10-07 06:27:58 +11:00
|
|
|
.controls
|
|
|
|
- if current_account.following?(@account)
|
2016-11-16 09:56:03 +11:00
|
|
|
= link_to t('accounts.unfollow'), unfollow_account_path(@account), data: { method: :post }, class: 'button'
|
2016-10-07 06:27:58 +11:00
|
|
|
- else
|
2016-11-16 09:56:03 +11:00
|
|
|
= link_to t('accounts.follow'), follow_account_path(@account), data: { method: :post }, class: 'button'
|
2017-01-07 06:15:24 +11:00
|
|
|
- elsif !user_signed_in?
|
2017-01-02 05:52:25 +11:00
|
|
|
.controls
|
|
|
|
.remote-follow
|
|
|
|
= link_to t('accounts.remote_follow'), account_remote_follow_path(@account), class: 'button'
|
2017-01-07 02:08:40 +11:00
|
|
|
.avatar= image_tag @account.avatar.url(:original), class: 'u-photo'
|
2016-03-20 00:02:30 +11:00
|
|
|
%h1.name
|
2017-01-10 14:40:45 +11:00
|
|
|
%span.p-name.emojify= display_name(@account)
|
2016-12-23 10:04:52 +11:00
|
|
|
%small
|
2017-01-07 02:08:40 +11:00
|
|
|
%span.p-nickname= "@#{@account.username}"
|
2016-12-23 10:04:52 +11:00
|
|
|
= fa_icon('lock') if @account.locked?
|
2016-03-20 00:02:30 +11:00
|
|
|
.details
|
|
|
|
.bio
|
2017-01-10 14:40:45 +11:00
|
|
|
.account__header__content.p-note.emojify= Formatter.instance.simplified_format(@account)
|
2016-10-04 01:10:17 +11:00
|
|
|
|
|
|
|
.details-counters
|
|
|
|
.counter{ class: active_nav_class(account_url(@account)) }
|
2017-01-07 02:08:40 +11:00
|
|
|
= link_to account_url(@account), class: 'u-url u-uid' do
|
2016-11-16 09:56:03 +11:00
|
|
|
%span.counter-label= t('accounts.posts')
|
2016-12-27 04:48:33 +11:00
|
|
|
%span.counter-number= number_with_delimiter @account.statuses.count
|
2016-10-04 01:10:17 +11:00
|
|
|
.counter{ class: active_nav_class(following_account_url(@account)) }
|
|
|
|
= link_to following_account_url(@account) do
|
2016-11-16 09:56:03 +11:00
|
|
|
%span.counter-label= t('accounts.following')
|
2016-12-27 04:48:33 +11:00
|
|
|
%span.counter-number= number_with_delimiter @account.following.count
|
2016-10-04 01:10:17 +11:00
|
|
|
.counter{ class: active_nav_class(followers_account_url(@account)) }
|
|
|
|
= link_to followers_account_url(@account) do
|
2016-11-16 09:56:03 +11:00
|
|
|
%span.counter-label= t('accounts.followers')
|
2016-12-27 04:48:33 +11:00
|
|
|
%span.counter-number= number_with_delimiter @account.followers.count
|