new page and nav system
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2026-04-03 21:03:52 +03:00
parent 65e029a417
commit c1230c0c86
6 changed files with 132 additions and 5 deletions

View File

@@ -194,6 +194,16 @@ def steam_import(request):
return redirect(f"{reverse('backlogger:list')}?category=games&imported={imported}")
@login_required
def live(request):
items = (
Item.objects
.filter(user=request.user)
.order_by('-updated_at')[:10]
)
return render(request, 'backlogger/live.html', {'items': items})
@login_required
def debug_delete_all(request):
if not settings.DEBUG: