diff options
author | luxagraf <sng@luxagraf.net> | 2018-02-03 08:03:45 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-02-03 08:03:45 -0600 |
commit | 31b07974cddc8843bab58f5b3e3a6bac9b529433 (patch) | |
tree | 1d06166d1f1775a49cd8ac0d14d0f9ca8e111d8d /app/sketches/views.py | |
parent | 76bb858208c37c737d9ee99442e8772ca0871f80 (diff) |
finished up notes app and made it live
Diffstat (limited to 'app/sketches/views.py')
-rw-r--r-- | app/sketches/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/sketches/views.py b/app/sketches/views.py index d6d548b..b696932 100644 --- a/app/sketches/views.py +++ b/app/sketches/views.py @@ -11,7 +11,7 @@ class SketchListView(PaginatedListView): Return a list of Notes in reverse chronological order """ queryset = Sketch.objects.all().order_by('-pub_date') - template_name = "archives/notes.html" + template_name = "archives/sketches.html" class SketchDetailView(DetailView): |