Retrospring/app/views/shared/_questionbox.html.haml

52 lines
2.2 KiB
Plaintext
Raw Normal View History

.panel.panel-default
.panel-heading
%h3.panel-title
2014-11-29 13:34:11 -08:00
- if @user.motivation_header.blank?
= t 'views.questionbox.title'
2014-11-29 13:34:11 -08:00
- else
= @user.motivation_header
.panel-body
- if @user.banned?
.row
.col-xs-12.text-center
%strong= t 'views.questionbox.banned'
- else
- if user_signed_in? or @user.privacy_allow_anonymous_questions?
#question-box
2015-01-03 13:27:14 -08:00
.row
.col-xs-12
2015-06-08 11:48:23 -07:00
%textarea.form-control{:name => "qb-question", :placeholder => t('views.placeholder.question')}
.row{:style => "padding-top: 5px; padding-left: 5px; padding-right: 5px;"}
.col-xs-6
- if user_signed_in?
- if @user.privacy_allow_anonymous_questions?
%input{:name => "qb-anonymous", :type => "checkbox"}/
= t 'views.actions.anonymous'
%br/
- else
%input{:name => "qb-anonymous", :type => "hidden", :value => "false"}/
.col-xs-6
%p.pull-right
%input{name: 'qb-to', type: 'hidden', :value => @user.id}/
2015-06-08 11:48:23 -07:00
%button.btn.btn-primary{name: 'qb-ask', :type => "button", data: {loading_text: t('views.questionbox.load'), promote: user_signed_in? ? "false" : "true" }} Ask
- unless user_signed_in?
- if @user.privacy_allow_anonymous_questions?
#question-box-promote.row{:style => "display: none;"}
.row
.col-xs-12.text-center
%strong= t 'views.questionbox.promote.message'
.row
.col-sm-1
.col-sm-5
%button#create-account.btn.btn-block.btn-primary= t 'views.questionbox.promote.create'
.col-sm-5
%button#new-question.btn.btn-block.btn-default= t 'views.questionbox.promote.another'
.col-sm-1
.row
.col-sm-1
.col-xs-12.col-sm-10.text-center
%small= t('views.questionbox.promote.join', app_title: APP_CONFIG['site_name'])
.col-sm-1
- else
2015-06-08 11:48:23 -07:00
%p= raw t 'views.questionbox.required', signup: link_to(t('views.sessions.new'),new_user_registration_path)