14 lines
295 B
Python
14 lines
295 B
Python
from django.views import generic
|
|
|
|
from articles.models import Article
|
|
|
|
|
|
class ArticlesListView(generic.ListView):
|
|
model = Article
|
|
paginate_by = 15
|
|
context_object_name = "articles"
|
|
|
|
|
|
class ArticleDetailView(generic.DetailView):
|
|
model = Article
|
|
context_object_name = "article"
|