add: галерея (4) первый этаж (плеск бессознательного) улучшен 2

This commit is contained in:
2026-09-01 23:57:41 +03:00
parent 8271f881e4
commit 951f649d6b
6 changed files with 102 additions and 14 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ from .services.halftone import (
from .services.naming import generate_hypno_title
def get_floor_fresh(limit: int | None = 6, offset: int = 0):
def get_floor_fresh(limit: int | None = 8, offset: int = 0):
"""
1-й ЭТАЖ: «Плеск бессознательного» (Инкубатор открытий).
Выборка: свежие кандидаты и первичный поток (Level.CANDIDATE, Level.LEVEL_1).
@@ -73,7 +73,7 @@ def gallery_floor(request: HttpRequest, floor_slug: str) -> HttpResponse:
@ensure_csrf_cookie
def index(request: HttpRequest | None) -> HttpResponse:
fresh_items = get_floor_fresh(limit=6)
fresh_items = get_floor_fresh(limit=8)
return render(request, "index.html", {
"fresh_items": fresh_items,
})