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

12 lines
276 B
Plaintext
Raw Normal View History

2022-09-07 15:43:28 -07:00
#entries
- @inbox.each do |i|
= render "inbox/entry", i: i
2022-09-07 15:43:28 -07:00
- if @inbox.empty?
= t(".empty")
2022-09-07 15:43:28 -07:00
- if @more_data_available
.d-flex.justify-content-center#paginator
2022-09-07 15:43:28 -07:00
= button_to inbox_path(last_id: @inbox_last_id), class: "btn btn-light" do
= t("voc.load")