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

10 lines
381 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/$', robotics.Index2015View.as_view(), name="2015-index")
]