summaryrefslogtreecommitdiff
path: root/bak/unused_apps/notes/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'bak/unused_apps/notes/views.py')
-rw-r--r--bak/unused_apps/notes/views.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/bak/unused_apps/notes/views.py b/bak/unused_apps/notes/views.py
new file mode 100644
index 0000000..05fe18e
--- /dev/null
+++ b/bak/unused_apps/notes/views.py
@@ -0,0 +1,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"