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

26 lines
1 KiB
Text
Raw Normal View History

2014-11-11 18:02:59 +01:00
.container.j2-page
2014-12-20 14:37:14 +01:00
.row
.col-md-3.col-xs-12.col-sm-3
.panel.panel-default.inbox--panel
.panel-heading
2014-12-21 14:28:33 +01:00
%h3.panel-title Out of questions?
2014-12-20 14:37:14 +01:00
.panel-body
%button.btn.btn-block.btn-info{type: :button, id: 'ib-generate-question'} Get new question
2014-12-21 23:09:16 +01:00
%a.btn.btn-block.btn-primary{href: "https://twitter.com/intent/tweet?text=Ask%20me%20anything%21&url=#{show_user_profile_url(current_user.screen_name)}"} Share on Twitter
.panel.panel-default.warning--panel
.panel-heading
2014-12-21 14:28:33 +01:00
%h3.panel-title Actions
.panel-body
2014-12-21 15:36:57 +01:00
%button.btn.btn-block.btn-danger{type: :button, id: 'ib-delete-all', disabled: (@inbox.empty? ? 'disabled' : nil), data: { ib_count: @inbox.count }} Delete all questions
2014-12-20 14:37:14 +01:00
.col-md-9.col-xs-12.col-sm-9
= render 'layouts/messages'
#entries
- @inbox.each do |i|
= render 'inbox/entry', i: i
2014-11-11 19:53:35 +01:00
- if @inbox.empty?
2014-11-11 20:24:49 +01:00
Nothing to see here.
2014-11-30 21:08:00 +01:00
= render "shared/links"
- @inbox.update_all(new: false)