summaryrefslogtreecommitdiff
path: root/urls.py
diff options
context:
space:
mode:
authorPrimal Pappachan2012-03-27 14:56:23 +0530
committerPrimal Pappachan2012-03-27 14:56:23 +0530
commit2a0e009c856b0ad8a28b613fcfde8f6cd92dca02 (patch)
tree2049a4187697b989382e3af2b65125b13a102222 /urls.py
parent8eba4c72a81176ba160e3e93e214acf28b9f376f (diff)
downloadaloha-2a0e009c856b0ad8a28b613fcfde8f6cd92dca02.tar.gz
aloha-2a0e009c856b0ad8a28b613fcfde8f6cd92dca02.tar.bz2
aloha-2a0e009c856b0ad8a28b613fcfde8f6cd92dca02.zip
Added buildout files
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/urls.py b/urls.py
deleted file mode 100644
index f5fdfe0..0000000
--- a/urls.py
+++ /dev/null
@@ -1,18 +0,0 @@
-from django.conf.urls.defaults import patterns, include, url
-
-from django.contrib import admin
-
-admin.autodiscover()
-
-urlpatterns = patterns('',
- url(r'^allotter/', include('allotter.urls')),
- # Examples:
- # url(r'^$', 'aloha.views.home', name='home'),
- # url(r'^aloha/', include('aloha.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)),
-)