summaryrefslogtreecommitdiff
path: root/app/unused_apps/sketches/views.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2020-12-02 15:02:12 -0500
committerluxagraf <sng@luxagraf.net>2020-12-02 15:02:12 -0500
commitab8055b5cab2523d925f59c65bc38df103a26991 (patch)
tree29e4597bc0d86d658f574c0c4f0b036351a68742 /app/unused_apps/sketches/views.py
parent87f692178a6e30719c564076f00c206642f36ce6 (diff)
deleted old apps and media
Diffstat (limited to 'app/unused_apps/sketches/views.py')
-rw-r--r--app/unused_apps/sketches/views.py40
1 files changed, 0 insertions, 40 deletions
diff --git a/app/unused_apps/sketches/views.py b/app/unused_apps/sketches/views.py
deleted file mode 100644
index b696932..0000000
--- a/app/unused_apps/sketches/views.py
+++ /dev/null
@@ -1,40 +0,0 @@
-from django.views.generic.dates import YearArchiveView, MonthArchiveView
-from django.views.generic.detail import DetailView
-
-from utils.views import PaginatedListView
-
-from .models import Sketch
-
-
-class SketchListView(PaginatedListView):
- """
- Return a list of Notes in reverse chronological order
- """
- queryset = Sketch.objects.all().order_by('-pub_date')
- template_name = "archives/sketches.html"
-
-
-class SketchDetailView(DetailView):
- model = Sketch
- template_name = "details/note.html"
- slug_field = "slug"
-
-
-class SketchDetailViewTXT(SketchDetailView):
- template_name = "details/entry.txt"
-
-
-class SketchYearArchiveView(YearArchiveView):
- queryset = Sketch.objects.all()
- date_field = "pub_date"
- make_object_list = True
- allow_future = True
- template_name = "archives/notes_date.html"
-
-
-class SketchMonthArchiveView(MonthArchiveView):
- queryset = Sketch.objects.all()
- date_field = "pub_date"
- allow_future = True
- template_name = "archives/notes_date.html"
-