retrospring/app/views/inbox/show.html.haml
2023-12-10 22:39:58 +01:00

15 lines
454 B
Text

#entries
- @inbox.each do |i|
= render "inbox/entry", i:
- if @inbox.empty?
= render "shared/empty", type: "inbox"
- 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, author: @author }.compact,
data: { controller: :hotkey, hotkey: "." },
form: { data: { turbo_stream: true } }