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