Retrospring/app/views/user/show.haml

14 lines
428 B
Plaintext

- unless @user.banned?
#answers
- @answers.each do |a|
= render 'answerbox', a: a
= render 'shared/cursored_pagination_dummy', more_data_available: @more_data_available, last_id: @answers_last_id
- if @more_data_available
%button.btn.btn-default#load-more-btn{ type: :button, data: { last_id: @answers_last_id } }
= t 'views.actions.load'
- provide(:title, user_title(@user))
- parent_layout 'user/profile'