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.

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 and add 'django.contrib.admindocs' 
    # to INSTALLED_APPS 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)),
)