Pagination
Display a large number of items in a list by splitting them into multiple pages.
Pagination only visible when the number of items exceeds the number of items per page.
⚙️ Configuration
Variable | Default | Values | Details |
---|---|---|---|
PAGINATION_PER_PAGE | 100 | number | added in v3.10 |
How to set configuration options
Set the environment variables when starting the container.
Use
Use
docker run
...- ...with
-e PAGINATION_PER_PAGE=100
- ...with
--env-file .env
and placePAGINATION_PER_PAGE=100
in the file