]> git.p6c8.net - pcdenotes.git/commitdiff
Count the *really* selected notes
authorPatrick Canterino <patrick@patrick-canterino.de>
Sat, 5 Mar 2022 11:48:37 +0000 (12:48 +0100)
committerPatrick Canterino <patrick@patrick-canterino.de>
Sat, 5 Mar 2022 11:48:37 +0000 (12:48 +0100)
notes/views.py

index d2c8bb00334db7baabefbc3861802dd3616c66dc..2c79254277e73f9596434f94388a515948b8647a 100644 (file)
@@ -10,7 +10,7 @@ from .models import Note
 def note_list(request):
     notes = Note.objects.all() if request.user.is_staff else Note.objects.filter(status=1)
 
-    notes_count = Note.objects.filter(status=1).count()
+    notes_count = notes.count()
     paginator = Paginator(notes, NOTES_PER_PAGE)
 
     page_number = 1

patrick-canterino.de