jazzband/django-mongonaut

View on GitHub
examples/blog/articles/views.py

Summary

Maintainability
A
0 mins
Test Coverage
from django.views.generic import ListView

from articles.models import Post


class PostListView(ListView):

    template_name = "articles/post_list.html"

    def get_queryset(self):
        return Post.objects.all()