diff options
Diffstat (limited to 'app/posts')
-rw-r--r-- | app/posts/views/src_views.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/posts/views/src_views.py b/app/posts/views/src_views.py index 5265707..990088f 100644 --- a/app/posts/views/src_views.py +++ b/app/posts/views/src_views.py @@ -33,11 +33,11 @@ class SrcDetailView(DetailView): class SrcDetailViewTXT(SrcDetailView): - template_name = "jrnl/entry_detail.txt" + template_name = "posts/jrnl_detail.txt" class TopicListView(ListView): - template_name = 'src/topic_list.html' + template_name = 'posts/topic_list.html' def get_queryset(self): return Post.objects.filter(topics__slug=self.kwargs['slug'],post_type=PostType.SRC) |