I'd like to create a TemplateView that displays all templates under a specific directory.
So for example I have
/staticpages/about-me.html
/staticpages/about-you.html
/staticpages/about-us.html
...
(many more)
In my urls.py i have ..
url(r'^(?P<page_name>[-\w]+)/$', StaticPageView.as_view()),
..
In my views.py i have
class StaticPageView(TemplateView):
def get_template_names(self):
return 'staticpages/%s' % self.kwargs['page_name']
However if someone goes to the url /staticpages/blahblah.html (which doesn't exist), It gets accepted by this view and a template not found error is generated. Howe can I redirect to a 404 if template not found?
Or alternately is there a better way of doing this?