2014-12-09 14:21:41 -08:00
|
|
|
.panel.inbox-box{class: "panel-#{i.new? ? 'primary' : 'default'}", data: { id: i.id }}
|
|
|
|
.panel-heading
|
|
|
|
.media
|
|
|
|
- unless i.question.author_is_anonymous
|
|
|
|
%a.pull-left{href: show_user_profile_path(i.question.user.screen_name)}
|
|
|
|
%img.img-rounded.answerbox--img{src: gravatar_url(i.question.user)}
|
|
|
|
.media-body
|
|
|
|
%h6.text-muted.media-heading.answerbox--question-user
|
2017-03-30 10:17:25 -07: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 14:21:41 -08:00
|
|
|
- unless i.question.author_is_anonymous
|
|
|
|
- if i.question.answer_count > 0
|
|
|
|
·
|
|
|
|
%a{href: show_user_question_path(i.question.user.screen_name, i.question.id)}
|
2015-06-06 15:24:27 -07:00
|
|
|
= pluralize(i.question.answer_count, t('views.inbox.entry.response'))
|
2014-12-09 14:21:41 -08:00
|
|
|
%p.answerbox--question-text= i.question.content
|
|
|
|
.panel-body
|
2015-06-08 11:48:23 -07:00
|
|
|
%textarea.form-control{name: 'ib-answer', placeholder: t('views.placeholder.inbox'), data: { id: i.id }}
|
2014-12-09 14:21:41 -08:00
|
|
|
%br/
|
|
|
|
%button.btn.btn-success{name: 'ib-answer', data: { ib_id: i.id }}
|
2015-06-06 15:24:27 -07:00
|
|
|
= t 'views.actions.answer'
|
2014-12-09 14:21:41 -08:00
|
|
|
%button.btn.btn-danger{name: 'ib-destroy', data: { ib_id: i.id }}
|
2015-06-06 15:24:27 -07:00
|
|
|
= t 'views.actions.delete'
|
2015-01-27 09:25:20 -08:00
|
|
|
%button.btn.btn-default{name: 'ib-options', data: { ib_id: i.id, state: :hidden }}
|
2015-01-27 21:49:17 -08:00
|
|
|
%i.fa.fa-cog
|
2015-06-06 15:24:27 -07:00
|
|
|
%span.sr-only= t 'views.actions.options'
|
2015-01-27 09:25:20 -08:00
|
|
|
.panel-footer{id: "ib-options-#{i.id}", style: 'display: none'}
|
2015-06-06 15:24:27 -07:00
|
|
|
%h4= t 'views.inbox.entry.sharing.title'
|
2015-01-27 21:49:17 -08:00
|
|
|
- if current_user.services.count > 0
|
2015-01-27 09:13:24 -08:00
|
|
|
.row
|
2015-01-30 11:32:10 -08:00
|
|
|
- current_user.services.each do |service|
|
2015-01-30 11:34:28 -08:00
|
|
|
.col-md-3.col-sm-4.col-xs-6
|
2015-01-30 11:32:10 -08:00
|
|
|
%label
|
|
|
|
%input{type: 'checkbox', name: 'ib-share', checked: :checked, data: { ib_id: i.id, service: service.provider }}
|
2015-06-06 15:24:27 -07:00
|
|
|
= raw t('views.inbox.entry.sharing.post', service: service.provider.capitalize)
|
2015-01-27 09:13:24 -08:00
|
|
|
- else
|
2015-06-06 17:57:21 -07:00
|
|
|
%p= raw t('views.inbox.entry.sharing.none', settings: link_to(t('views.inbox.entry.sharing.settings'), services_path))
|