ошибку не заметил

main
Сергей Ванюшкин 2023-10-11 19:25:48 +03:00
parent eb5eb79383
commit 9301f984c3
2 changed files with 4 additions and 2 deletions

View File

@ -91,10 +91,12 @@ def get_posts_by_tag(page=1, tag=None):
per_page = current_app.config.get("POSTS_ON_PAGE")
posts, total = get_all_posts_by_tag(tag, page, per_page)
total_pages = total // per_page + [0, 1][total % per_page != 0]
if posts is None:
abort(404)
total_pages = total // per_page + [0, 1][total % per_page != 0]
list_pages = [
x for x in range(1, total_pages + 1) if x >= page - 2 and x <= page + 2
]

View File

@ -1,7 +1,7 @@
import os
# Настройки блога
MYLIPOSTS_ON_PAGE = 6
POSTS_ON_PAGE = 6
# Тема оформления админ панели
FLASK_ADMIN_SWATCH = "slate"