1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/project/pages/views.py

28 lines
718 B
Python
Raw Normal View History

2015-10-19 13:04:49 +01:00
from django.views.generic import TemplateView
from project.common.views import CustomHeaderBG
from django.contrib.staticfiles.templatetags.staticfiles import static
class IndexView(TemplateView):
template_name = 'index.html'
2015-11-09 21:47:16 +00:00
2015-10-19 13:04:49 +01:00
class NoJavascriptView(TemplateView):
template_name = 'core/no-js.html'
class Custom404View(CustomHeaderBG.Template):
template_name = 'core/404.html'
def get(self, request, *args, **kwargs):
context = self.get_context_data(**kwargs)
return self.render_to_response(context, status=404)
class AboutWebsiteView(CustomHeaderBG.Template):
template_name = 'about/website.html'
class AboutIndexView(TemplateView):
2015-11-23 18:50:14 +00:00
template_name = 'about/index.html'