2020-05-10 05:06:22 -07:00
|
|
|
.card.answerbox{ data: { id: a.id, q_id: a.question.id } }
|
2020-04-26 08:13:31 -07:00
|
|
|
- if @question.nil?
|
2020-05-10 05:06:22 -07:00
|
|
|
= render 'answerbox/header', a: a
|
2020-04-26 08:13:31 -07:00
|
|
|
.card-body
|
2020-05-10 05:06:22 -07:00
|
|
|
- if display_all.nil?
|
2020-05-02 11:35:28 -07:00
|
|
|
.answerbox__answer-text
|
2020-04-26 08:13:31 -07:00
|
|
|
= markdown a.content[0..255]
|
|
|
|
- if a.content.length > 255
|
|
|
|
[...]
|
|
|
|
%p
|
2020-05-10 05:06:22 -07:00
|
|
|
%a.btn.btn-primary{ href: show_user_answer_path(a.user.screen_name, a.id) }
|
2020-04-26 08:13:31 -07:00
|
|
|
= t 'views.answerbox.read'
|
|
|
|
- else
|
2020-05-02 11:35:28 -07:00
|
|
|
.answerbox__answer-text
|
2020-04-26 08:13:31 -07:00
|
|
|
= markdown a.content
|
|
|
|
- if @user.nil?
|
|
|
|
.row
|
2020-05-06 18:46:44 -07:00
|
|
|
.col.col-sm-4.col-md-6.text-left.text-muted
|
2020-04-26 08:13:31 -07:00
|
|
|
.media
|
|
|
|
.pull-left
|
2020-05-10 05:06:22 -07:00
|
|
|
%a{ href: show_user_profile_path(a.user.screen_name) }
|
|
|
|
%img.answerbox__answer-user-avatar.avatar-sm{ src: a.user.profile_picture.url(:medium) }
|
2020-04-26 08:13:31 -07:00
|
|
|
.media-body
|
2020-05-02 11:35:28 -07:00
|
|
|
%h6.media-heading.answerbox__answer-user
|
2020-05-10 05:06:22 -07:00
|
|
|
= raw t('views.answerbox.answered', hide: hidespan(t('views.answerbox.hide'), 'd-none d-sm-inline'), user: user_screen_name(a.user))
|
2020-05-02 11:35:28 -07:00
|
|
|
.answerbox__answer-date
|
2020-04-26 08:13:31 -07:00
|
|
|
= link_to(raw(t('views.answerbox.time', time: time_tooltip(a))), show_user_answer_path(a.user.screen_name, a.id))
|
2020-05-06 18:46:44 -07:00
|
|
|
.col.col-sm-8.col-md-6.text-right
|
2020-05-10 05:06:22 -07:00
|
|
|
= render 'answerbox/actions', a: a, display_all: display_all
|
2020-04-26 08:13:31 -07:00
|
|
|
- else
|
|
|
|
.row
|
2020-05-04 20:04:54 -07:00
|
|
|
.col-4.col-sm-4.col-md-6.text-left.text-muted
|
2020-04-26 08:13:31 -07:00
|
|
|
%i.fa.fa-clock-o
|
|
|
|
= link_to(raw(t('views.answerbox.time', time: time_tooltip(a))), show_user_answer_path(a.user.screen_name, a.id))
|
2020-05-04 20:04:54 -07:00
|
|
|
.col-8.col-sm-8.col-md-6.text-right
|
2020-04-26 08:13:31 -07:00
|
|
|
= render 'answerbox/actions', a: a
|
2020-05-10 05:06:22 -07:00
|
|
|
.card-footer{ id: "ab-comments-section-#{a.id}", style: display_all.nil? ? 'display: none' : nil }
|
|
|
|
%div{ id: "ab-smiles-#{a.id}" }= render 'answerbox/smiles', a: a
|
|
|
|
%div{ id: "ab-comments-#{a.id}" }= render 'answerbox/comments', a: a
|