blob: 05fe18e3d167a75d3f3238a751a31110cf48b8c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
from django.views.generic.dates import YearArchiveView, MonthArchiveView
from django.views.generic.detail import DetailView
from utils.views import PaginatedListView
from notes.models import Note
class NoteList(PaginatedListView):
"""
Return a list of Notes in reverse chronological order
"""
queryset = Note.objects.all().order_by('-pub_date')
template_name = "archives/notes.html"
class NoteDetailView(DetailView):
model = Note
template_name = "details/note.html"
slug_field = "slug"
class NoteDetailViewTXT(NoteDetailView):
template_name = "details/entry.txt"
class NoteYearArchiveView(YearArchiveView):
queryset = Note.objects.all()
date_field = "pub_date"
make_object_list = True
allow_future = True
template_name = "archives/notes_date.html"
class NoteMonthArchiveView(MonthArchiveView):
queryset = Note.objects.all()
date_field = "pub_date"
allow_future = True
template_name = "archives/notes_date.html"
|