pytask/urls.py
author nishanth
Thu, 28 Jan 2010 21:39:35 +0530
changeset 4 a9c458c7782a
parent 2 3db830ff66ee
child 5 aea7e764c033
permissions -rw-r--r--
corrected admin.py in taskapp.

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')),
    
    (r'^admin/', include(admin.site.urls)),

)