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

9 lines
229 B
Python
Raw Normal View History

from django.conf.urls import url
from project.pages.views import projects
urlpatterns = [
2016-01-28 21:11:31 +00:00
url(r'^$', projects.AllView.as_view(), name="all"),
url(r'^(?P<project>.+)/$', projects.ProjectView.as_view(), name="project")
]