urls.py
author Nishanth <nishanth@fossee.in>
Sun, 24 Jan 2010 15:43:19 +0530
changeset 1 7818992cbf83
parent 0 a87d642f1ba5
child 9 3ad980fc23ca
permissions -rw-r--r--
Created taskapp and added data to models.py and edited settings.py to make it usable in admin interface.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
a87d642f1ba5 Initial commit that has bare minimum django project files.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     1
from django.conf.urls.defaults import *
a87d642f1ba5 Initial commit that has bare minimum django project files.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     2
a87d642f1ba5 Initial commit that has bare minimum django project files.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     3
# Uncomment the next two lines to enable the admin:
1
7818992cbf83 Created taskapp and added data to models.py and edited settings.py to make it usable in admin interface.
Nishanth <nishanth@fossee.in>
parents: 0
diff changeset
     4
from django.contrib import admin
7818992cbf83 Created taskapp and added data to models.py and edited settings.py to make it usable in admin interface.
Nishanth <nishanth@fossee.in>
parents: 0
diff changeset
     5
admin.autodiscover()
0
a87d642f1ba5 Initial commit that has bare minimum django project files.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     6
a87d642f1ba5 Initial commit that has bare minimum django project files.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     7
urlpatterns = patterns('',
a87d642f1ba5 Initial commit that has bare minimum django project files.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     8
    # Example:
a87d642f1ba5 Initial commit that has bare minimum django project files.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     9
    # (r'^pytask/', include('pytask.foo.urls')),
a87d642f1ba5 Initial commit that has bare minimum django project files.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
    10
a87d642f1ba5 Initial commit that has bare minimum django project files.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
    11
    # Uncomment the admin/doc line below and add 'django.contrib.admindocs' 
a87d642f1ba5 Initial commit that has bare minimum django project files.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
    12
    # to INSTALLED_APPS to enable admin documentation:
a87d642f1ba5 Initial commit that has bare minimum django project files.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
    13
    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
a87d642f1ba5 Initial commit that has bare minimum django project files.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
    14
a87d642f1ba5 Initial commit that has bare minimum django project files.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
    15
    # Uncomment the next line to enable the admin:
1
7818992cbf83 Created taskapp and added data to models.py and edited settings.py to make it usable in admin interface.
Nishanth <nishanth@fossee.in>
parents: 0
diff changeset
    16
    (r'^admin/', include(admin.site.urls)),
0
a87d642f1ba5 Initial commit that has bare minimum django project files.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
    17
)