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

68 lines
3.4 KiB
Plaintext
Raw Normal View History

2020-04-19 14:31:24 -07:00
.card.answerbox{data: { id: a.id, q_id: a.question.id }}
2014-12-07 11:51:44 -08:00
- if @question.nil?
2020-04-19 14:13:39 -07:00
.card-header
.media.question-media
2014-12-07 11:51:44 -08:00
- 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)}
.media-body.question-body
2015-04-25 17:46:37 -07:00
- if user_signed_in?
.pull-right
.btn-group
%button.btn.btn-link.btn-sm.dropdown-toggle{data: { toggle: :dropdown }, aria: { expanded: :false }}
%span.caret
2020-04-19 14:13:39 -07:00
.dropdown-menu.dropdown-menu-right{role: :menu}
2015-04-25 18:36:25 -07:00
- if current_user.mod? or a.question.user == current_user
2020-04-19 14:13:39 -07:00
%a.dropdown-item.text-danger{href: '#', tabindex: -1, data: { action: 'ab-question-destroy', q_id: a.question.id }}
%i.fa.fa-trash-o
= t 'views.actions.delete'
2015-04-25 17:46:37 -07:00
- unless a.question.user == current_user
2020-04-19 14:13:39 -07:00
%a.dropdown-item{href: '#', tabindex: -1, data: { action: 'ab-question-report', q_id: a.question.id }}
%i.fa.fa-exclamation-triangle
= t 'views.actions.report'
%h6.text-muted.media-heading.answerbox--question-user
= raw t('views.answerbox.asked', user: user_screen_name(a.question.user, anonymous: a.question.author_is_anonymous), time: time_tooltip(a.question))
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)}
= pluralize(a.question.answer_count, t('views.general.answer'))
2015-01-09 12:44:41 -08:00
.answerbox--question-text
2015-01-09 12:52:09 -08:00
= a.question.content
2020-04-19 14:13:39 -07:00
.card-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)}
= t 'views.answerbox.read'
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
= raw t('views.answerbox.answered', hide: hidespan(t('views.answerbox.hide'), "xs"), user: user_screen_name(a.user))
2015-01-26 06:51:18 -08:00
.answerbox--answer-date
2015-06-09 05:27:49 -07:00
= link_to(raw(t('views.answerbox.time', time: time_tooltip(a))), show_user_answer_path(a.user.screen_name, a.id))
2015-01-26 06:51:18 -08:00
.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
= link_to(raw(t('views.answerbox.time', time: time_tooltip(a))), show_user_answer_path(a.user.screen_name, a.id))
2015-02-17 14:57:34 -08:00
.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
2020-04-19 14:13:39 -07:00
.card-footer{id: "ab-comments-section-#{a.id}", style: @display_all.nil? ? 'display: none' : nil }
2014-12-26 15:39:03 -08:00
%div{id: "ab-smiles-#{a.id}"}= render 'shared/smiles', a: a
%div{id: "ab-comments-#{a.id}"}= render 'shared/comments', a: a