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

70 lines
3.1 KiB
Plaintext
Raw Normal View History

.panel.panel-default.answerbox{data: { id: a.id }}
2014-12-07 11:51:44 -08: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.answerbox--img{src: gravatar_url(a.question.user)}
2014-12-07 11:51:44 -08:00
.media-body
%h6.text-muted.media-heading.answerbox--question-user
2014-12-07 11:51:44 -08:00
= user_screen_name a.question.user, a.question.author_is_anonymous
2014-12-25 06:13:52 -08:00
asked
2014-12-25 06:16:57 -08:00
- if @user.nil? or a.question.author_is_anonymous
2015-02-19 15:18:43 -08:00
%span{title: a.question.created_at, data: { toggle: :tooltip, placement: :bottom }}
= time_ago_in_words(a.question.created_at)
- else
%a{href: show_user_question_path(a.question.user.screen_name, a.question.id)}
2015-02-19 15:18:43 -08:00
%span{title: a.question.created_at, data: { toggle: :tooltip, placement: :bottom }}
= time_ago_in_words(a.question.created_at)
2014-12-25 06:13:52 -08:00
ago
2014-12-07 11:51:44 -08:00
- 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
2015-01-09 12:44:41 -08:00
.answerbox--question-text
2015-01-09 12:52:09 -08:00
= a.question.content
2014-11-27 02:50:29 -08:00
.panel-body
2014-12-28 10:11:36 -08:00
- if @display_all.nil?
2015-01-09 12:44:41 -08:00
.answerbox--answer-text
= markdown a.content[0..255]
- if a.content.length > 255
[...]
%p
%a.btn.btn-primary{href: show_user_answer_path(a.user.screen_name, a.id)}
Read the entire answer
2014-12-28 10:11:36 -08:00
- else
2015-01-09 12:44:41 -08:00
.answerbox--answer-text
= markdown a.content
2014-11-30 12:14:55 -08:00
- if @user.nil?
.row
2015-01-26 06:51:18 -08:00
.col-md-6.col-sm-4.col-xs-6.text-left.text-muted
.media
.pull-left
%a{href: show_user_profile_path(a.user.screen_name)}
%img.img-rounded.answerbox--img{src: gravatar_url(a.user)}
.media-body
%h6.media-heading.answerbox--answer-user
%span.hidden-xs
Answered by
2015-01-26 06:57:07 -08:00
= user_screen_name a.user
2015-01-26 06:51:18 -08:00
.answerbox--answer-date
%a{href: show_user_answer_path(a.user.screen_name, a.id)}
2015-02-19 15:18:43 -08:00
%span{title: a.created_at, data: { toggle: :tooltip, placement: :bottom }}
= time_ago_in_words(a.created_at)
2015-01-26 06:51:18 -08:00
ago
.col-md-6.col-sm-8.col-xs-6.text-right
2014-11-30 12:14:55 -08:00
= render 'shared/answerbox_buttons', a: a
- else
.row
2015-02-17 14:57:34 -08:00
.col-md-6.col-sm-4.col-xs-6.text-left.text-muted
2015-02-17 15:07:38 -08:00
%i.fa.fa-clock-o
%a{href: show_user_answer_path(a.user.screen_name, a.id)}
2015-02-19 15:18:43 -08:00
%span{title: a.created_at, data: { toggle: :tooltip, placement: :bottom }}
= time_ago_in_words(a.created_at)
2015-02-17 14:57:34 -08:00
ago
.col-md-6.col-sm-8.col-xs-6.text-right
2014-12-04 22:02:23 -08:00
= render 'shared/answerbox_buttons', a: a
2014-12-26 15:39:03 -08:00
.panel-footer{id: "ab-comments-section-#{a.id}", style: @display_all.nil? ? 'display: none' : nil }
%div{id: "ab-smiles-#{a.id}"}= render 'shared/smiles', a: a
%div{id: "ab-comments-#{a.id}"}= render 'shared/comments', a: a