From ab8055b5cab2523d925f59c65bc38df103a26991 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Wed, 2 Dec 2020 15:02:12 -0500 Subject: deleted old apps and media --- app/unused_apps/notes/views.py | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 app/unused_apps/notes/views.py (limited to 'app/unused_apps/notes/views.py') diff --git a/app/unused_apps/notes/views.py b/app/unused_apps/notes/views.py deleted file mode 100644 index 05fe18e..0000000 --- a/app/unused_apps/notes/views.py +++ /dev/null @@ -1,39 +0,0 @@ -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" -- cgit v1.2.3-70-g09d2