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'
|
2021-08-05 09:31:35 -07:00
|
|
|
- if current_user.has_role? :administrator
|
2021-08-06 04:38:24 -07:00
|
|
|
%a.dropdown-item{ href: rails_admin_path_for_resource(a.question), target: '_blank' }
|
2021-08-05 09:31:35 -07:00
|
|
|
%i.fa.fa-gears
|
|
|
|
View in Kontrollzentrum
|
2020-05-02 11:35:28 -07:00
|
|
|
%h6.text-muted.media-heading.answerbox__question-user
|
2022-06-21 09:18:09 -07:00
|
|
|
- if a.question.author_is_anonymous
|
2022-06-22 03:51:34 -07:00
|
|
|
%i.fa.fa-user-secret{ title: t('.anon_hint') }
|
2022-06-26 15:36:00 -07:00
|
|
|
= raw t('views.answerbox.asked', user: user_screen_name(a.question.user, context_user: a.user, author_identifier: a.question.author_is_anonymous ? a.question.author_identifier: nil), time: time_tooltip(a.question))
|
2021-08-11 07:56:58 -07:00
|
|
|
- if !a.question.author_is_anonymous && !a.question.direct
|
2020-11-16 09:18:42 -08:00
|
|
|
·
|
|
|
|
%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
|
2021-12-30 08:59:44 -08:00
|
|
|
= question_markdown a.question.content
|