1
Fork 0
theorangeone.net-legacy/project/pages/urls/robotics.py

11 lines
458 B
Python

from django.conf.urls import url
from project.pages.views import robotics
urlpatterns = [
url(r'^$', robotics.IndexView.as_view(), name="index"),
url(r'^2014/$', robotics.Index2014View.as_view(), name="2014-index"),
url(r'^2015/robot/$', robotics.Robot2015View.as_view(), name="2015-robot"),
url(r'^2015/code/$', robotics.Code2015View.as_view(), name="2015-code"),
url(r'^2015/$', robotics.Index2015View.as_view(), name="2015-index")
]