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

11 lines
340 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?
%p.empty= t(".empty")
2022-09-07 15:43:28 -07:00
- if @more_data_available
.d-flex.justify-content-center#paginator
= button_to t("voc.load"), inbox_path, class: "btn btn-light", method: :get, params: { last_id: @inbox_last_id }, form: { data: { turbo_stream: true } }