Coverage for books/views.py: 100.00%

6 statements  

« prev     ^ index     » next       coverage.py v7.9.1, created at 2025-06-14 19:27 -0700

1from django.views.generic import ListView 1a

2 

3from .models import Book 1a

4 

5 

6class BookListView(ListView): 1a

7 model = Book 1a

8 template_name = "book_list.html" 1a

9 

10 paginate_by = 2 1a