Skip to main content
✏️ Code CompletionDJ Django Hard+35 XP

Class-Based View

Complete to create a list view for the Post model.

✏️ Fill in the blank
class PostListView(___): model = Post
    template_name = 'posts/list.html'

✏️ Type the missing code: