diff options
author | luxagraf <sng@luxagraf.net> | 2022-12-17 14:44:02 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2022-12-17 14:44:02 -0600 |
commit | 4ecc8fca59c3a5e36530e88859cb9f9347444efc (patch) | |
tree | d6b09ebf6acb7697fa83543afc3c630994009523 /app/pages/views.py | |
parent | 656505098a80e653319236ac302fd6dd9f485b33 (diff) |
pages: added a homepage template
Diffstat (limited to 'app/pages/views.py')
-rw-r--r-- | app/pages/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/pages/views.py b/app/pages/views.py index d876a49..a4be450 100644 --- a/app/pages/views.py +++ b/app/pages/views.py @@ -29,7 +29,7 @@ class HomePageList(DetailView): model = HomePage def get_template_names(self): - return ["pages/%s.html" % self.template_name, 'pages/luxagraf/homepage.html'] + return ["pages/%s.html" % self.template_name, 'pages/homepage.html'] def get_context_data(self, **kwargs): # Call the base implementation first to get a context |