retrospring/app/views/inbox/show.html.haml

20 lines
550 B
Text
Raw Normal View History

2014-11-11 18:02:59 +01:00
.container.j2-page
2014-11-11 20:24:49 +01:00
= render 'layouts/messages'
2014-11-11 07:10:41 +01:00
- @inbox.each do |i|
2014-11-11 20:24:49 +01:00
.panel.panel-default.inbox-box{'data-id' => i.id}
.panel-body
%p
%strong
= user_screen_name i.question.user, i.question.author_is_anonymous
asked:
%p
%strong
= i.question.content
2014-11-13 19:20:18 +01:00
%textarea.form-control{name: 'ib-answer', 'data-id' => i.id}
2014-11-11 20:24:49 +01:00
%br/
%button.btn.btn-success{name: 'ib-answer', 'data-ib-id' => i.id}
Answer
2014-11-11 19:53:35 +01:00
- if @inbox.empty?
2014-11-11 20:24:49 +01:00
2014-11-11 19:53:35 +01:00
Nothing to see here.