Adjust what content gets hidden on banned user profiles
This commit is contained in:
parent
c864c14355
commit
1914c56b05
|
@ -8,8 +8,9 @@
|
||||||
.d-none.d-sm-block= render 'shared/links'
|
.d-none.d-sm-block= render 'shared/links'
|
||||||
.col-lg-9.col-md-8.col-xs-12.col-sm-8
|
.col-lg-9.col-md-8.col-xs-12.col-sm-8
|
||||||
= render 'questionbox', user: @user
|
= render 'questionbox', user: @user
|
||||||
= render 'tabs/profile', user: @user
|
- unless @user.banned?
|
||||||
= yield
|
= render 'tabs/profile', user: @user
|
||||||
|
= yield
|
||||||
- if user_signed_in?
|
- if user_signed_in?
|
||||||
= render 'modal/list', user: @user
|
= render 'modal/list', user: @user
|
||||||
- if current_user.mod? && @user != current_user
|
- if current_user.mod? && @user != current_user
|
||||||
|
|
|
@ -37,4 +37,5 @@
|
||||||
.profile__location
|
.profile__location
|
||||||
%i.fa.fa-fw.fa-location-arrow
|
%i.fa.fa-fw.fa-location-arrow
|
||||||
= user.profile.location
|
= user.profile.location
|
||||||
= render "user/actions", user: user, type: :follower
|
- unless user.banned?
|
||||||
|
= render "user/actions", user: user, type: :follower
|
||||||
|
|
|
@ -1,17 +1,16 @@
|
||||||
- unless @user.banned?
|
%div{ data: { controller: "navigation" } }
|
||||||
%div{ data: { controller: "navigation" } }
|
%button.d-none{ data: { hotkey: "j", action: "navigation#down" } }
|
||||||
%button.d-none{ data: { hotkey: "j", action: "navigation#down" } }
|
%button.d-none{ data: { hotkey: "k", action: "navigation#up" } }
|
||||||
%button.d-none{ data: { hotkey: "k", action: "navigation#up" } }
|
#pinned-answers
|
||||||
#pinned-answers
|
- @pinned_answers.each do |a|
|
||||||
- @pinned_answers.each do |a|
|
= render "answerbox", a:
|
||||||
= render "answerbox", a:
|
|
||||||
|
|
||||||
#answers
|
#answers
|
||||||
- if @answers.empty?
|
- if @answers.empty?
|
||||||
= render "shared/empty", icon: "fa-regular fa-comments", translation_key: ".user.answers"
|
= render "shared/empty", icon: "fa-regular fa-comments", translation_key: ".user.answers"
|
||||||
|
|
||||||
- @answers.each do |a|
|
- @answers.each do |a|
|
||||||
= render "answerbox", a:
|
= render "answerbox", a:
|
||||||
|
|
||||||
- if @more_data_available
|
- if @more_data_available
|
||||||
.d-flex.justify-content-center.justify-content-sm-start#paginator
|
.d-flex.justify-content-center.justify-content-sm-start#paginator
|
||||||
|
|
Loading…
Reference in New Issue