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

38 lines
1.6 KiB
Plaintext

.panel.panel-default.answer-box{'data-id' => a.id}
.panel-heading
.media
- 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)}
.media-body
%h6.text-muted.media-heading.answerbox-question-user= user_screen_name a.question.user, a.question.author_is_anonymous
%p.answerbox-question-text= a.question.content
.panel-body
%p= a.content
- if @user.nil?
.row
.col-md-6.col-sm-4.col-xs-7.text-left.text-muted
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
.col-md-6.col-sm-8.col-xs-5.text-right
%span.hidden-xs.text-muted x users smiled at this
%a.btn.btn-info.btn-sm
%i.fa.fa-smile-o
%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
.col-md-6.col-md-offset-6.col-sm-8.col-sm-offset-4.col-xs-5.col-xs-offset-7.text-right
%span.hidden-xs.text-muted x users smiled at this
%a.btn.btn-info.btn-sm
%i.fa.fa-smile-o
%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