mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-31 18:39:07 +01:00
96659befea
Co-authored-by: Georg Gadinger <nilsding@nilsding.org>
14 lines
398 B
Text
14 lines
398 B
Text
#entries
|
|
- @inbox.each do |i|
|
|
= render "inbox/entry", services:, i:
|
|
|
|
- if @inbox.empty?
|
|
%p.empty= t(".empty")
|
|
|
|
- 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,
|
|
form: { data: { turbo_stream: true } }
|