Retrospring/app/views/layouts/inbox.html.haml

14 lines
380 B
Plaintext
Raw Normal View History

.container-lg.container--main
2020-04-25 09:10:48 -07:00
.row
2022-10-16 07:16:12 -07:00
.col-sm-10.col-md-10.col-lg-9.mx-auto
= render 'inbox/actions', delete_id: @delete_id, disabled: @disabled, inbox_count: @inbox_count
2020-04-25 09:10:48 -07:00
= render 'layouts/messages'
= yield
2020-05-10 04:10:47 -07:00
= render 'shared/links'
2020-04-25 09:10:48 -07:00
2020-05-10 04:10:47 -07:00
:ruby
Inbox.where(id: @inbox.ids).update_all(new: false)
provide(:title, generate_title('Inbox'))
parent_layout 'base'