pytask/urls.py
author nishanth
Thu, 28 Jan 2010 20:26:54 +0530
changeset 2 3db830ff66ee
parent 1 b7bbb12e3b8e
child 5 aea7e764c033
permissions -rw-r--r--
added an app called taskapp and created the models.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
b7bbb12e3b8e created a django project called pytask.
nishanth
parents:
diff changeset
     1
from django.conf.urls.defaults import *
b7bbb12e3b8e created a django project called pytask.
nishanth
parents:
diff changeset
     2
b7bbb12e3b8e created a django project called pytask.
nishanth
parents:
diff changeset
     3
# Uncomment the next two lines to enable the admin:
b7bbb12e3b8e created a django project called pytask.
nishanth
parents:
diff changeset
     4
from django.contrib import admin
b7bbb12e3b8e created a django project called pytask.
nishanth
parents:
diff changeset
     5
admin.autodiscover()
b7bbb12e3b8e created a django project called pytask.
nishanth
parents:
diff changeset
     6
b7bbb12e3b8e created a django project called pytask.
nishanth
parents:
diff changeset
     7
urlpatterns = patterns('',
b7bbb12e3b8e created a django project called pytask.
nishanth
parents:
diff changeset
     8
    # Example:
b7bbb12e3b8e created a django project called pytask.
nishanth
parents:
diff changeset
     9
    # (r'^pytask/', include('pytask.foo.urls')),
b7bbb12e3b8e created a django project called pytask.
nishanth
parents:
diff changeset
    10
b7bbb12e3b8e created a django project called pytask.
nishanth
parents:
diff changeset
    11
    # Uncomment the admin/doc line below and add 'django.contrib.admindocs' 
b7bbb12e3b8e created a django project called pytask.
nishanth
parents:
diff changeset
    12
    # to INSTALLED_APPS to enable admin documentation:
b7bbb12e3b8e created a django project called pytask.
nishanth
parents:
diff changeset
    13
    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
b7bbb12e3b8e created a django project called pytask.
nishanth
parents:
diff changeset
    14
    
b7bbb12e3b8e created a django project called pytask.
nishanth
parents:
diff changeset
    15
    (r'^admin/', include(admin.site.urls)),
b7bbb12e3b8e created a django project called pytask.
nishanth
parents:
diff changeset
    16
b7bbb12e3b8e created a django project called pytask.
nishanth
parents:
diff changeset
    17
)