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

12 lines
442 B
Python
Raw Normal View History

2015-10-19 13:04:49 +01:00
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^about/website/$', views.AboutWebsiteView.as_view(), name='about-website'),
2015-12-28 12:36:05 +00:00
url(r'^about/me/$', views.AboutMeView.as_view(), name='about-me'),
2015-10-19 13:04:49 +01:00
url(r'^about/$', views.AboutIndexView.as_view(), name='about'),
url(r'^projects/(?P<project>.+)/$', views.ProjectsView.as_view(), name="projects"),
2015-10-19 13:04:49 +01:00
url(r'^$', views.IndexView.as_view(), name='index')
]