urls.py
changeset 0 8d8a3f5af24f
child 18 718b7b0309f1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/urls.py	Thu Jan 06 16:28:32 2011 +0530
@@ -0,0 +1,16 @@
+from django.conf.urls.defaults import *
+
+# Uncomment the next two lines to enable the admin:
+# from django.contrib import admin
+# admin.autodiscover()
+
+urlpatterns = patterns('',
+    # Example:
+    # (r'^pytask/', include('pytask.foo.urls')),
+
+    # Uncomment the admin/doc line below to enable admin documentation:
+    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
+
+    # Uncomment the next line to enable the admin:
+    # (r'^admin/', include(admin.site.urls)),
+)