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/urls.py
2015-10-19 13:04:49 +01:00

10 lines
389 B
Python

from django.conf.urls import url
from .views import Index2015View, Index2014View, RoboticsIndexView, Robot2015View
urlpatterns = [
url(r'^$', RoboticsIndexView.as_view(), name='index' ),
url(r'^2015', Index2015View.as_view(), name='2015-index'),
url(r'^2015/robot', Robot2015View.as_view(), name='2015-robot'),
url(r'^2014', Index2014View.as_view(), name='2014-index')
]