summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'python/gentoo_www/urls.py')
-rw-r--r--python/gentoo_www/urls.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/python/gentoo_www/urls.py b/python/gentoo_www/urls.py
new file mode 100644
index 0000000..5cd3d6a
--- /dev/null
+++ b/python/gentoo_www/urls.py
@@ -0,0 +1,7 @@
+from django.conf.urls import url
+
+from . import views
+
+urlpatterns = [
+ url(r'^(?P<pagerequest>\d+)/$', 'views.target'),
+]