2017-01-06 20:15:24 +01:00
|
|
|
.card.h-card.p-author{ style: "background-image: url(#{@account.header.url( :original)})" }
|
2016-12-22 23:07:46 +01:00
|
|
|
- if user_signed_in? && current_account.id != @account.id && !current_account.requested?(@account)
|
2016-10-06 21:27:58 +02:00
|
|
|
.controls
|
|
|
|
- if current_account.following?(@account)
|
2016-11-15 23:56:03 +01:00
|
|
|
= link_to t('accounts.unfollow'), unfollow_account_path(@account), data: { method: :post }, class: 'button'
|
2016-10-06 21:27:58 +02:00
|
|
|
- else
|
2016-11-15 23:56:03 +01:00
|
|
|
= link_to t('accounts.follow'), follow_account_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
|
|
|
|
= link_to t('accounts.remote_follow'), account_remote_follow_path(@account), class: 'button'
|
2017-01-06 16:08:40 +01:00
|
|
|
.avatar= image_tag @account.avatar.url(:original), class: 'u-photo'
|
2016-03-19 14:02:30 +01:00
|
|
|
%h1.name
|
2017-01-10 04:40:45 +01:00
|
|
|
%span.p-name.emojify= display_name(@account)
|
2016-12-23 00:04:52 +01:00
|
|
|
%small
|
2017-01-06 16:08:40 +01:00
|
|
|
%span.p-nickname= "@#{@account.username}"
|
2016-12-23 00:04:52 +01:00
|
|
|
= fa_icon('lock') if @account.locked?
|
2016-03-19 14:02:30 +01:00
|
|
|
.details
|
|
|
|
.bio
|
2017-01-10 04:40:45 +01:00
|
|
|
.account__header__content.p-note.emojify= Formatter.instance.simplified_format(@account)
|
2016-10-03 16:10:17 +02:00
|
|
|
|
|
|
|
.details-counters
|
2017-03-22 19:26:22 +01: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-03-31 14:02:07 +02:00
|
|
|
%span.counter-number= number_with_delimiter @account.statuses_count
|
2016-10-03 16:10:17 +02:00
|
|
|
.counter{ class: active_nav_class(following_account_url(@account)) }
|
|
|
|
= link_to following_account_url(@account) do
|
2016-11-15 23:56:03 +01:00
|
|
|
%span.counter-label= t('accounts.following')
|
2017-03-31 14:02:07 +02:00
|
|
|
%span.counter-number= number_with_delimiter @account.following_count
|
2016-10-03 16:10:17 +02:00
|
|
|
.counter{ class: active_nav_class(followers_account_url(@account)) }
|
|
|
|
= link_to followers_account_url(@account) do
|
2016-11-15 23:56:03 +01:00
|
|
|
%span.counter-label= t('accounts.followers')
|
2017-03-31 14:02:07 +02:00
|
|
|
%span.counter-number= number_with_delimiter @account.followers_count
|