2014-11-27 02:50:29 -08:00
|
|
|
.panel.panel-default.answer-box{'data-id' => a.id}
|
2014-11-29 14:18:52 -08:00
|
|
|
.panel-heading
|
|
|
|
.media
|
2014-11-30 05:43:27 -08:00
|
|
|
- unless a.question.author_is_anonymous
|
|
|
|
%a.pull-left{href: show_user_profile_path(a.question.user.screen_name)}
|
|
|
|
%img.img-rounded.img-answerbox{src: gravatar_url(a.question.user)}
|
2014-11-29 14:18:52 -08:00
|
|
|
.media-body
|
2014-11-29 15:23:11 -08:00
|
|
|
%h6.text-muted.media-heading.answerbox-question-user= user_screen_name a.question.user, a.question.author_is_anonymous
|
2014-11-29 14:29:34 -08:00
|
|
|
%p.answerbox-question-text= a.question.content
|
2014-11-30 11:47:28 -08:00
|
|
|
.media-right.pull-right.text-muted
|
2014-11-30 11:45:21 -08:00
|
|
|
%i.fa.fa-clock-o
|
2014-11-30 11:37:52 -08:00
|
|
|
= time_ago_in_words(a.question.created_at)
|
2014-11-27 02:50:29 -08:00
|
|
|
.panel-body
|
|
|
|
%p= a.content
|
2014-11-30 07:09:39 -08:00
|
|
|
- if @user.nil?
|
2014-11-30 08:22:34 -08:00
|
|
|
.row
|
2014-11-30 08:36:26 -08:00
|
|
|
.col-md-6.col-sm-4.col-xs-7.text-left.text-muted
|
2014-11-30 08:22:34 -08:00
|
|
|
Answered by
|
|
|
|
%a{href: show_user_profile_path(a.user.screen_name)}
|
|
|
|
%img.img-rounded.img-answerbox-small{src: gravatar_url(a.user)}
|
|
|
|
%span= a.user.screen_name
|
2014-11-30 11:47:28 -08:00
|
|
|
%span= time_ago_in_words(a.created_at)
|
2014-11-30 11:45:21 -08:00
|
|
|
ago
|
2014-11-30 08:36:26 -08:00
|
|
|
.col-md-6.col-sm-8.col-xs-5.text-right
|
2014-11-30 11:31:22 -08:00
|
|
|
%span.hidden-xs.text-muted
|
|
|
|
%span{id: "ab-smile-count-#{a.id}"}= a.smile_count
|
|
|
|
users smiled this
|
|
|
|
- if user_signed_in?
|
|
|
|
- if current_user.smiled? a
|
|
|
|
%button.btn.btn-info.btn-sm{type: :button, name: 'ab-smile', 'data-a-id' => a.id, 'data-action' => 'unsmile'}
|
|
|
|
%i.fa.fa-frown-o
|
|
|
|
- else
|
|
|
|
%button.btn.btn-info.btn-sm{type: :button, name: 'ab-smile', 'data-a-id' => a.id, 'data-action' => 'smile'}
|
|
|
|
%i.fa.fa-smile-o
|
2014-11-30 08:22:34 -08:00
|
|
|
%a.btn.btn-primary.btn-sm
|
|
|
|
%i.fa.fa-comments
|
|
|
|
- if privileged? a.user
|
|
|
|
%button.btn.btn-danger.btn-sm{name: 'ab-destroy', 'data-a-id' => a.id}
|
|
|
|
%i.fa.fa-trash-o
|
|
|
|
- else
|
|
|
|
.row
|
2014-11-30 08:40:31 -08:00
|
|
|
.col-md-6.col-md-offset-6.col-sm-8.col-sm-offset-4.col-xs-6.col-xs-offset-6.text-right
|
2014-11-30 08:35:03 -08:00
|
|
|
%span.hidden-xs.text-muted x users smiled at this
|
2014-11-30 08:22:34 -08:00
|
|
|
%a.btn.btn-info.btn-sm
|
2014-11-30 08:24:24 -08:00
|
|
|
%i.fa.fa-smile-o
|
2014-11-30 08:22:34 -08:00
|
|
|
%a.btn.btn-primary.btn-sm
|
|
|
|
%i.fa.fa-comments
|
|
|
|
- if privileged? a.user
|
|
|
|
%button.btn.btn-danger.btn-sm{name: 'ab-destroy', 'data-a-id' => a.id}
|
|
|
|
%i.fa.fa-trash-o
|