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

20 lines
929 B
Python
Raw Normal View History

2015-10-19 13:04:49 +01:00
from django.conf.urls import url
from . import views
urlpatterns = [
2016-01-26 18:25:20 +00:00
url(r'^about/website/$', views.about.WebsiteView.as_view(), name='about-website'),
url(r'^about/me/$', views.about.MeView.as_view(), name='about-me'),
url(r'^about/$', views.about.IndexView.as_view(), name='about'),
2016-01-26 18:25:20 +00:00
url(r'^projects/all/$', views.projects.AllView.as_view(), name="all-projects"),
url(r'^projects/(?P<project>.+)/$', views.projects.ProjectView.as_view(), name="projects"),
url(r'^robotics/$', views.robotics.IndexView.as_view(), name="robotics-index"),
url(r'^robotics/2014/$', views.robotics.Index2014View.as_view(), name="robotics-2014-index"),
url(r'^robotics/2015/robot/$', views.robotics.Robot2015View.as_view(), name="robotics-2015-robot"),
url(r'^robotics/2015/$', views.robotics.Index2015View.as_view(), name="robotics-2015-index"),
2016-01-26 18:25:20 +00:00
url(r'^$', views.core.IndexView.as_view(), name='index')
2015-10-19 13:04:49 +01:00
]