2015-05-10 10:48:47 -07:00
|
|
|
- provide(:title, "#{@question.user.display_name.blank? ? "@#{@question.user.screen_name}'s" : "#{@question.user.display_name}'s"} question | #{APP_CONFIG['site_name']}")
|
2015-05-12 11:48:06 -07:00
|
|
|
= render 'shared/question_header', question: @question, hidden: false
|
|
|
|
= render 'shared/question_header', question: @question, hidden: true
|
2015-04-25 17:18:57 -07:00
|
|
|
.container.question-page
|
2014-12-07 11:51:44 -08:00
|
|
|
/ TODO: make this pretty (it's currently C-c'd straight from shared/_answerbox)
|
2015-01-03 09:41:10 -08:00
|
|
|
|
2015-01-03 10:14:26 -08:00
|
|
|
#answers
|
|
|
|
- @answers.each do |a|
|
|
|
|
= render 'shared/answerbox', a: a, show_question: false
|
2015-01-03 10:02:06 -08:00
|
|
|
|
2015-01-03 10:24:51 -08:00
|
|
|
#pagination= will_paginate @answers, renderer: BootstrapPagination::Rails, page_links: false
|
|
|
|
|
|
|
|
- if @answers.next_page
|
|
|
|
%button#load-more-btn.btn.btn-default{type: :button, data: { current_page: @answers.current_page }}
|
|
|
|
Load more
|
|
|
|
|
2015-01-03 13:37:10 -08:00
|
|
|
- if user_signed_in? and !current_user.answered? @question and current_user != @question.user and @question.user.privacy_allow_stranger_answers
|
2015-01-03 09:57:30 -08:00
|
|
|
.panel.panel-default#q-answer-box
|
|
|
|
.panel-heading
|
|
|
|
%h3.panel-title This question was not in your inbox? Answer it here!
|
2015-01-03 09:41:10 -08:00
|
|
|
.panel-body
|
|
|
|
%textarea#q-answer.form-control{placeholder: 'Write your answer here...', data: { id: @question.id }}
|
|
|
|
%br/
|
|
|
|
%button#q-answer.btn.btn-success{data: { q_id: @question.id }}
|
|
|
|
Answer
|
|
|
|
- current_user.services.each do |service|
|
|
|
|
%label
|
|
|
|
%input{type: 'checkbox', name: 'share', checked: :checked, data: { q_id: @question.id, service: service.provider }}
|
|
|
|
Post to
|
2015-04-25 17:18:57 -07:00
|
|
|
= service.provider.capitalize
|