fix saved list pagination

The SavedLists view was passing through an incorrect "path" value. Now it's not.
This commit is contained in:
Hugh Rundle 2023-11-20 12:45:39 +11:00
parent 06568aab88
commit 446854ccf0
No known key found for this signature in database
GPG key ID: A7E35779918253F9

View file

@ -59,7 +59,7 @@ class SavedLists(View):
data = {
"lists": paginated.get_page(request.GET.get("page")),
"list_form": forms.ListForm(),
"path": "/list",
"path": "/list/saved",
}
return TemplateResponse(request, "lists/lists.html", data)