2015-05-10 21:17:12 -07:00
|
|
|
.panel.panel-default#profile
|
2015-01-02 18:54:30 -08:00
|
|
|
%img.profile--avatar{src: @user.profile_picture.url(:large)}
|
2015-01-06 06:32:14 -08:00
|
|
|
- if @user.admin?
|
|
|
|
.profile--panel-badge.panel-badge-danger
|
|
|
|
%i.fa.fa-flask
|
|
|
|
Admin
|
|
|
|
- if @user.moderator?
|
|
|
|
.profile--panel-badge.panel-badge-success
|
|
|
|
%i.fa.fa-users
|
|
|
|
Mod
|
|
|
|
- if @user.supporter?
|
|
|
|
.profile--panel-badge.panel-badge-warning
|
|
|
|
%i.fa.fa-star
|
|
|
|
Supporter
|
2015-04-19 13:25:21 -07:00
|
|
|
- if @user.contributor?
|
|
|
|
.profile--panel-badge.panel-badge-primary
|
|
|
|
%i.fa.fa-github
|
|
|
|
Contributor
|
2015-01-25 11:30:09 -08:00
|
|
|
- if @user.blogger?
|
|
|
|
.profile--panel-badge.panel-badge-info
|
2015-01-25 11:50:42 -08:00
|
|
|
%i.fa.fa-pencil
|
2015-01-25 11:30:09 -08:00
|
|
|
Blogger
|
2015-01-12 13:44:13 -08:00
|
|
|
- if @user.banned?
|
|
|
|
.profile--panel-badge.panel-badge-default
|
|
|
|
%i.fa.fa-ban
|
|
|
|
Banned
|
2015-01-06 06:32:14 -08:00
|
|
|
- if @user.following? current_user
|
|
|
|
.profile--panel-badge.panel-badge-default
|
|
|
|
Follows you
|
2014-12-08 08:03:06 -08:00
|
|
|
.panel-body
|
2015-05-15 15:39:33 -07:00
|
|
|
.profile--panel-name
|
|
|
|
- if @user.display_name.blank?
|
|
|
|
.profile--displayname
|
|
|
|
= @user.screen_name
|
|
|
|
- else
|
|
|
|
.profile--displayname
|
|
|
|
= @user.display_name
|
|
|
|
.profile--username
|
|
|
|
= @user.screen_name
|
2014-12-08 08:03:06 -08:00
|
|
|
- unless @user.bio.blank?
|
2015-01-06 22:02:07 -08:00
|
|
|
%p.profile--text= markdown @user.bio
|
2014-12-08 08:03:06 -08:00
|
|
|
- unless @user.website.blank?
|
2014-12-09 06:32:29 -08:00
|
|
|
%p.profile--text
|
2014-12-08 08:03:06 -08:00
|
|
|
%i.fa.fa-globe
|
|
|
|
%a{href: @user.website}= @user.display_website
|
|
|
|
- unless @user.location.blank?
|
2014-12-09 06:32:29 -08:00
|
|
|
%p.profile--text
|
2014-12-08 08:03:06 -08:00
|
|
|
%i.fa.fa-location-arrow
|
|
|
|
= @user.location
|
2015-01-02 18:56:14 -08:00
|
|
|
= render 'user/actions', user: @user, type: :follower
|
2015-04-19 13:25:21 -07:00
|
|
|
= render 'user/stats', user: @user
|