aboutsummaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-03-10 03:04:13 +0100
committerGravatar Tom Willemsen2012-03-10 03:04:13 +0100
commit9648ce73fda47739be5465d8142c38bda588c6f6 (patch)
tree866100c62ede3bc0dab50b0dc19de4a4191c5fd4 /urls.py
downloadryuslash.org-9648ce73fda47739be5465d8142c38bda588c6f6.tar.gz
ryuslash.org-9648ce73fda47739be5465d8142c38bda588c6f6.zip
Initial commit
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/urls.py b/urls.py
new file mode 100644
index 0000000..fc93441
--- /dev/null
+++ b/urls.py
@@ -0,0 +1,11 @@
+from django.conf.urls.defaults import patterns, include, url
+
+# Uncomment the next two lines to enable the admin:
+from django.contrib import admin
+admin.autodiscover()
+
+urlpatterns = patterns('',
+ url(r'^((?P<page>\d+)/)?$', 'aggregator.views.posts'),
+ # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
+ url(r'^admin/', include(admin.site.urls)),
+)