From 7a1332e5cde15449ac4a3741d593951148e4f688 Mon Sep 17 00:00:00 2001 From: superlishunqin <852326703@qq.com> Date: Sun, 18 May 2025 09:54:19 +0800 Subject: [PATCH] list.html --- app/templates/book/list.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/book/list.html b/app/templates/book/list.html index ba65446..665e1a1 100644 --- a/app/templates/book/list.html +++ b/app/templates/book/list.html @@ -236,7 +236,7 @@
显示 {{ pagination.total }} 条结果中的第 {{ (pagination.page - 1) * pagination.per_page + 1 }} - 到 {{ min(pagination.page * pagination.per_page, pagination.total) }} 条 + 到 {{ (pagination.page * pagination.per_page) if (pagination.page * pagination.per_page < pagination.total) else pagination.total }} 条
{% endif %}