minor: add dev tmp layout sandbox

This commit is contained in:
2026-04-16 11:59:06 +03:00
parent d14f67d930
commit a400244f97
3 changed files with 165 additions and 1 deletions

View File

@@ -102,6 +102,18 @@ def alltags(request):
return render(request, template, to_template)
@require_GET
def tmp(request):
"""Dev-песочница для подготовки сложной вёрстки новостей в IDE."""
return render(
request,
"tmp.jinja2",
{
"COOKIES": check_cookies(request),
},
)
def index(request,
slug_tags: str = "",
ppage: int = 0):