From: Guillaume Pellerin Date: Wed, 31 Aug 2016 10:18:46 +0000 (+0200) Subject: Fix template path X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=b774d3cbcca6138212454005e626f57849b65f6c;p=mezzo.git Fix template path --- diff --git a/app/organization/projects/views.py b/app/organization/projects/views.py index ec747068..d779decf 100644 --- a/app/organization/projects/views.py +++ b/app/organization/projects/views.py @@ -13,5 +13,5 @@ class ProjectListView(ListView): class ProjectDetailView(SlugMixin, DetailView): model = Project - template_name='project/project_detail.html' + template_name='projects/project_detail.html' context_object_name = 'project'