summaryrefslogtreecommitdiffstats
path: root/myapp/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'myapp/urls.py')
-rw-r--r--myapp/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/myapp/urls.py b/myapp/urls.py
index 0ef0e5a..463b774 100644
--- a/myapp/urls.py
+++ b/myapp/urls.py
@@ -4,5 +4,6 @@ from . import views
urlpatterns = [
url(r'^$', views.app, name='app'), # at this point /app string is consumed
- url(r'^page/', views.page, name='page'), # at this point /app string is consumed as well, therefore /app/page hits this
+ url(r'^page', views.page, name='page'), # at this point /app string is consumed as well, therefore /app/page hits this
+ url(r'^cl', views.cl_scrap),
] \ No newline at end of file