aboutsummaryrefslogtreecommitdiffstats
path: root/lib/yp/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/yp/urls.py')
-rwxr-xr-xlib/yp/urls.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/yp/urls.py b/lib/yp/urls.py
index 586b87b6..494de9ae 100755
--- a/lib/yp/urls.py
+++ b/lib/yp/urls.py
@@ -5,4 +5,8 @@ urlpatterns = [
url(r'^hello/$', views.yp_hello, name='yp_hello'),
url(r'^$', views.yp_hello, name='yp_default'),
+
+ url(r'^report/(?P<page_name>\D+)$', views.report, name='report'),
+ url(r'^manage_report/$', views.manage_report, name='manage_report'),
+
]