diff options
author | luxagraf <sng@luxagraf.net> | 2020-11-17 16:31:44 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-11-17 16:31:44 -0500 |
commit | bcb8a8e367c308e89204a287fc9c531fe97c5035 (patch) | |
tree | 0b40b9783f7a80a8bb1658457c2d2d68ba7627d1 /app/posts | |
parent | b359e5b0ac136da51c08069a24ec4f727597247e (diff) |
fixed a bug in src build
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) |