2020-05-10 13:21:41 +02:00
|
|
|
.card.inbox-entry{ class: i.new? ? 'inbox-entry--new' : '', data: { id: i.id } }
|
2020-04-19 23:09:41 +02:00
|
|
|
.card-header
|
2014-12-09 23:21:41 +01:00
|
|
|
.media
|
|
|
|
- unless i.question.author_is_anonymous
|
2020-05-10 13:21:41 +02:00
|
|
|
%a.pull-left{ href: show_user_profile_path(i.question.user.screen_name) }
|
|
|
|
%img.answerbox__question-user-avatar.avatar-md{ src: i.question.user.profile_picture.url(:medium) }
|
2014-12-09 23:21:41 +01:00
|
|
|
.media-body
|
2020-05-07 15:01:35 +02:00
|
|
|
%h6.text-muted.media-heading.answerbox__question-user
|
2017-03-30 19:17:25 +02:00
|
|
|
= raw t('views.inbox.entry.asked', user: user_screen_name(i.question.user, anonymous: i.question.author_is_anonymous), time: time_tooltip(i.question))
|
2014-12-09 23:21:41 +01:00
|
|
|
- unless i.question.author_is_anonymous
|
2020-05-10 13:21:41 +02:00
|
|
|
- if i.question.answer_count.positive?
|
2014-12-09 23:21:41 +01:00
|
|
|
·
|
2020-05-10 13:21:41 +02:00
|
|
|
%a{ href: show_user_question_path(i.question.user.screen_name, i.question.id) }
|
2015-06-07 00:24:27 +02:00
|
|
|
= pluralize(i.question.answer_count, t('views.inbox.entry.response'))
|
2020-05-02 20:35:48 +02:00
|
|
|
%p.answerbox__question-text= i.question.content
|
2020-04-19 23:09:41 +02:00
|
|
|
.card-body
|
2020-05-10 13:21:41 +02:00
|
|
|
%textarea.form-control{ name: 'ib-answer', placeholder: t('views.placeholder.inbox'), data: { id: i.id } }
|
2014-12-09 23:21:41 +01:00
|
|
|
%br/
|
2020-05-10 13:21:41 +02:00
|
|
|
%button.btn.btn-success{ name: 'ib-answer', data: { ib_id: i.id } }
|
2015-06-07 00:24:27 +02:00
|
|
|
= t 'views.actions.answer'
|
2020-05-10 13:21:41 +02:00
|
|
|
%button.btn.btn-danger{ name: 'ib-destroy', data: { ib_id: i.id } }
|
2015-06-07 00:24:27 +02:00
|
|
|
= t 'views.actions.delete'
|
2020-05-10 13:21:41 +02:00
|
|
|
%button.btn.btn-default{ name: 'ib-options', data: { ib_id: i.id, state: :hidden } }
|
2015-01-28 06:49:17 +01:00
|
|
|
%i.fa.fa-cog
|
2015-06-07 00:24:27 +02:00
|
|
|
%span.sr-only= t 'views.actions.options'
|
2020-05-10 13:21:41 +02:00
|
|
|
.card-footer{ id: "ib-options-#{i.id}", style: 'display: none' }
|
2015-06-07 00:24:27 +02:00
|
|
|
%h4= t 'views.inbox.entry.sharing.title'
|
2020-05-10 13:21:41 +02:00
|
|
|
- if current_user.services.count.positive?
|
2015-01-27 18:13:24 +01:00
|
|
|
.row
|
2015-01-30 20:32:10 +01:00
|
|
|
- current_user.services.each do |service|
|
2015-01-30 20:34:28 +01:00
|
|
|
.col-md-3.col-sm-4.col-xs-6
|
2015-01-30 20:32:10 +01:00
|
|
|
%label
|
2020-05-10 13:21:41 +02:00
|
|
|
%input{ type: 'checkbox', name: 'ib-share', checked: :checked, data: { ib_id: i.id, service: service.provider } }
|
2015-06-07 00:24:27 +02:00
|
|
|
= raw t('views.inbox.entry.sharing.post', service: service.provider.capitalize)
|
2015-01-27 18:13:24 +01:00
|
|
|
- else
|
2015-06-07 02:57:21 +02:00
|
|
|
%p= raw t('views.inbox.entry.sharing.none', settings: link_to(t('views.inbox.entry.sharing.settings'), services_path))
|