Fix project urls
This commit is contained in:
parent
a482b0824a
commit
1f29217b0a
1 changed files with 2 additions and 2 deletions
|
@ -3,6 +3,6 @@ from project.pages.views import projects
|
|||
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^projects/all/$', projects.AllView.as_view(), name="all"),
|
||||
url(r'^projects/(?P<project>.+)/$', projects.ProjectView.as_view(), name="project")
|
||||
url(r'^$', projects.AllView.as_view(), name="all"),
|
||||
url(r'^(?P<project>.+)/$', projects.ProjectView.as_view(), name="project")
|
||||
]
|
||||
|
|
Reference in a new issue