summaryrefslogtreecommitdiff
path: root/scanneerjammer/urls.py
diff options
context:
space:
mode:
authorMaksim A. Boyko <maksim.a.boyko@gmail.com>2012-05-30 11:22:05 -0400
committerMaksim A. Boyko <maksim.a.boyko@gmail.com>2012-05-30 11:22:05 -0400
commit155719d70191af3bf203d2591a3b96b74da1e4ef (patch)
tree54bb3739a0cee690f93e126d76ffb2dcf07def67 /scanneerjammer/urls.py
Initial commit
Diffstat (limited to 'scanneerjammer/urls.py')
-rw-r--r--scanneerjammer/urls.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/scanneerjammer/urls.py b/scanneerjammer/urls.py
new file mode 100644
index 0000000..9735f0c
--- /dev/null
+++ b/scanneerjammer/urls.py
@@ -0,0 +1,17 @@
+from django.conf.urls import patterns, include, url
+
+# Uncomment the next two lines to enable the admin:
+# from django.contrib import admin
+# admin.autodiscover()
+
+urlpatterns = patterns('',
+ # Examples:
+ # url(r'^$', 'scanneerjammer.views.home', name='home'),
+ # url(r'^scanneerjammer/', include('scanneerjammer.foo.urls')),
+
+ # Uncomment the admin/doc line below to enable admin documentation:
+ # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
+
+ # Uncomment the next line to enable the admin:
+ # url(r'^admin/', include(admin.site.urls)),
+)