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/robotics/views.py

22 lines
602 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
class RoboticsIndexView(TemplateView):
template_name = 'robotics/index.html'
# 2015
class Index2015View(CustomHeaderBG.Template):
template_name = 'robotics/2015-index.html'
header_BG = "https://farm8.staticflickr.com/7711/17122633430_7d1bde923a_k.jpg"
class Robot2015View(CustomHeaderBG.Template):
template_name = 'robotics/2015-robot.html'
header_BG = ""
# 2014
class Index2014View(CustomHeaderBG.Template):
template_name = 'robotics/2014-index.html'
header_BG = "nothing"