diff options
author | luxagraf <sng@luxagraf.net> | 2020-08-15 11:58:34 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-08-15 11:58:34 -0400 |
commit | b66d000ee469539ce7aea557b612c0444177e36d (patch) | |
tree | 273547921dc6f9ded2a5681b82514c68e28ba448 /app/notes/views.py | |
parent | d3e57c1bd17ad3e71810235a672d4782136901a5 (diff) |
archived old unused apps and migrated fieldnotes to posts
Diffstat (limited to 'app/notes/views.py')
-rw-r--r-- | app/notes/views.py | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/app/notes/views.py b/app/notes/views.py deleted file mode 100644 index 05fe18e..0000000 --- a/app/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" |