2014-11-11 09:02:59 -08:00
|
|
|
.container.j2-page
|
2014-11-11 11:24:49 -08:00
|
|
|
= render 'layouts/messages'
|
2014-11-10 22:10:41 -08:00
|
|
|
- @inbox.each do |i|
|
2014-11-11 11:24:49 -08:00
|
|
|
.panel.panel-default.inbox-box{'data-id' => i.id}
|
2014-11-30 09:15:00 -08:00
|
|
|
.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.img-answerbox{src: gravatar_url(i.question.user)}
|
|
|
|
.media-body
|
|
|
|
%h6.text-muted.media-heading.answerbox-question-user= user_screen_name i.question.user, i.question.author_is_anonymous
|
|
|
|
%p.answerbox-question-text= i.question.content
|
2014-11-11 11:24:49 -08:00
|
|
|
.panel-body
|
2014-11-13 10:20:18 -08:00
|
|
|
%textarea.form-control{name: 'ib-answer', 'data-id' => i.id}
|
2014-11-11 11:24:49 -08:00
|
|
|
%button.btn.btn-success{name: 'ib-answer', 'data-ib-id' => i.id}
|
|
|
|
Answer
|
2014-11-30 09:05:51 -08:00
|
|
|
%button.btn.btn-danger{name: 'ib-destroy', 'data-ib-id' => i.id}
|
|
|
|
Delete
|
2014-11-11 10:53:35 -08:00
|
|
|
|
|
|
|
- if @inbox.empty?
|
2014-11-11 11:24:49 -08:00
|
|
|
|
2014-11-17 04:19:59 -08:00
|
|
|
Nothing to see here.
|
|
|
|
|
|
|
|
= render "shared/links"
|