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

24 lines
486 B
Python
Raw Normal View History

2016-01-29 22:14:35 +00:00
from project.common.views import CustomTemplate, MarkdownView
class IndexView(CustomTemplate):
template_name = 'robotics/index.html'
# 2015
class Index2015View(CustomTemplate):
template_name = 'robotics/2015-index.html'
class Robot2015View(CustomTemplate):
template_name = 'robotics/2015-robot.html'
2016-01-29 22:14:35 +00:00
class Code2015View(MarkdownView):
markdown = 'robotics/2015-code.md'
# 2014
class Index2014View(CustomTemplate):
template_name = 'robotics/2014-index.html'