2020-04-25 08:21:39 -07:00
|
|
|
- unless @user.banned?
|
|
|
|
#answers
|
|
|
|
- @answers.each do |a|
|
2020-04-26 08:13:31 -07:00
|
|
|
= render 'answerbox', a: a
|
2020-04-25 08:21:39 -07:00
|
|
|
|
|
|
|
= render 'shared/cursored_pagination_dummy', more_data_available: @more_data_available, last_id: @answers_last_id
|
|
|
|
|
|
|
|
- if @more_data_available
|
2020-05-29 11:37:47 -07:00
|
|
|
.d-flex.justify-content-center
|
|
|
|
%button.btn.btn-light#load-more-btn{ type: :button, data: { last_id: @answers_last_id } }
|
|
|
|
= t 'views.actions.load'
|
2020-04-25 08:21:39 -07:00
|
|
|
|
|
|
|
- provide(:title, user_title(@user))
|
2020-05-10 00:08:58 -07:00
|
|
|
- parent_layout 'user/profile'
|