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

41 lines
1.7 KiB
Text
Raw Normal View History

2014-11-27 11:50:29 +01:00
.panel.panel-default.answer-box{'data-id' => a.id}
2014-12-07 20:51:44 +01:00
- if @question.nil?
.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
asked
%a{href: show_user_answer_path(a.user.screen_name, a.id)}
= time_ago_in_words(a.question.created_at)
ago
- unless a.question.author_is_anonymous
- if a.question.answer_count > 1
·
%a{href: show_user_question_path(a.question.user.screen_name, a.question.id)}
#{a.question.answer_count} answers
%p.answerbox-question-text
= a.question.content
2014-11-27 11:50:29 +01:00
.panel-body
%p= a.content
2014-11-30 21:14:55 +01:00
- if @user.nil?
.row
2014-11-30 17:36:26 +01:00
.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
2014-11-30 20:51:44 +01:00
%span= time_ago_in_words(a.created_at)
ago
2014-11-30 21:14:55 +01:00
.col-md-6.col-sm-8.col-xs-5.text-right
= render 'shared/answerbox_buttons', a: a
- else
.row
.col-md-6.col-md-offset-6.col-sm-8.col-sm-offset-4.col-xs-6.col-xs-offset-6.text-right
2014-12-05 07:02:23 +01:00
= render 'shared/answerbox_buttons', a: a
.panel-footer{id: "ab-comments-#{a.id}", style: 'display: none'}
2014-12-05 20:17:44 +01:00
= render 'shared/comments', a: a