pytask/urls.py
author nishanth
Thu, 28 Jan 2010 20:31:15 +0530
changeset 3 1c247c4856e9
parent 2 3db830ff66ee
child 5 aea7e764c033
permissions -rw-r--r--
corrected auth_profile setting to settings.py.

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)),

)