summaryrefslogtreecommitdiff
path: root/app/sketches
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2018-02-02 17:18:59 -0600
committerluxagraf <sng@luxagraf.net>2018-02-02 17:18:59 -0600
commit336af6487fc36bdf185f87bff10b6a309137ddb0 (patch)
tree09a47c6a5065afcf53bd9aa115012847bc8610c8 /app/sketches
parent3222a2d413d1ab141134bee04d17069668f7ac12 (diff)
moar bugs
Diffstat (limited to 'app/sketches')
-rw-r--r--app/sketches/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/sketches/views.py b/app/sketches/views.py
index b2ae3d7..d6d548b 100644
--- a/app/sketches/views.py
+++ b/app/sketches/views.py
@@ -6,7 +6,7 @@ from utils.views import PaginatedListView
from .models import Sketch
-class SketchList(PaginatedListView):
+class SketchListView(PaginatedListView):
"""
Return a list of Notes in reverse chronological order
"""
@@ -20,7 +20,7 @@ class SketchDetailView(DetailView):
slug_field = "slug"
-class NoteDetailViewTXT(SketchDetailView):
+class SketchDetailViewTXT(SketchDetailView):
template_name = "details/entry.txt"