Don't show lists a book is already on in add form

This commit is contained in:
Mouse Reeve
2022-02-28 10:03:24 -08:00
parent ab1c7c6d0a
commit 202696f913
2 changed files with 3 additions and 2 deletions

View File

@ -83,6 +83,7 @@ class Book(View):
}
if request.user.is_authenticated:
data["list_options"] = request.user.list_set.exclude(id__in=data["lists"])
data["file_link_form"] = forms.FileLinkForm()
readthroughs = models.ReadThrough.objects.filter(
user=request.user,