Retrospring/app/views/answerbox/_header.haml

29 lines
1.6 KiB
Plaintext
Raw Normal View History

2020-04-26 08:13:31 -07:00
.card-header
2020-05-02 11:35:28 -07:00
.media
2020-04-26 08:13:31 -07:00
- unless a.question.author_is_anonymous
2020-05-10 05:22:04 -07:00
%a.pull-left{ href: show_user_profile_path(a.question.user.screen_name) }
%img.answerbox__question-user-avatar.avatar-md{ src: a.question.user.profile_picture.url(:medium) }
2020-05-02 11:35:28 -07:00
.media-body
2020-04-26 08:13:31 -07:00
- if user_signed_in?
.pull-right
.btn-group
2020-05-10 05:22:04 -07:00
%button.btn.btn-link.btn-sm.dropdown-toggle{ data: { toggle: :dropdown }, aria: { expanded: false } }
2020-04-26 08:13:31 -07:00
%span.caret
2020-05-10 05:22:04 -07:00
.dropdown-menu.dropdown-menu-right{ role: :menu }
- if current_user.mod? || a.question.user == current_user
%a.dropdown-item.text-danger{ href: '#', tabindex: -1, data: { action: 'ab-question-destroy', q_id: a.question.id } }
2020-04-26 08:13:31 -07:00
%i.fa.fa-trash-o
= t 'views.actions.delete'
- unless a.question.user == current_user
2020-05-10 05:22:04 -07:00
%a.dropdown-item{ href: '#', tabindex: -1, data: { action: 'ab-question-report', q_id: a.question.id } }
2020-04-26 08:13:31 -07:00
%i.fa.fa-exclamation-triangle
= t 'views.actions.report'
2020-05-02 11:35:28 -07:00
%h6.text-muted.media-heading.answerbox__question-user
2020-04-26 08:13:31 -07:00
= raw t('views.answerbox.asked', user: user_screen_name(a.question.user, anonymous: a.question.author_is_anonymous), time: time_tooltip(a.question))
- if !a.question.author_is_anonymous && 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'))
2020-05-02 11:35:28 -07:00
.answerbox__question-text
2020-05-10 05:22:04 -07:00
= a.question.content