2022-09-07 15:43:28 -07:00
|
|
|
#entries
|
|
|
|
- @inbox.each do |i|
|
2023-02-05 09:06:48 -08:00
|
|
|
= render "inbox/entry", i:
|
2022-09-04 11:24:32 -07:00
|
|
|
|
2022-09-07 15:43:28 -07:00
|
|
|
- if @inbox.empty?
|
2023-12-10 12:56:23 -08:00
|
|
|
= render "shared/empty", type: "inbox"
|
2022-09-04 11:24:32 -07:00
|
|
|
|
2022-09-07 15:43:28 -07:00
|
|
|
- if @more_data_available
|
2022-10-25 12:52:58 -07:00
|
|
|
.d-flex.justify-content-center#paginator
|
2023-01-19 07:25:56 -08:00
|
|
|
= button_to t("voc.load"), inbox_path,
|
|
|
|
class: "btn btn-light",
|
|
|
|
method: :get,
|
|
|
|
params: { last_id: @inbox_last_id, author: @author }.compact,
|
2023-03-19 06:42:01 -07:00
|
|
|
data: { controller: :hotkey, hotkey: "." },
|
2023-01-19 07:25:56 -08:00
|
|
|
form: { data: { turbo_stream: true } }
|