urls.py
author nishanth
Thu, 04 Feb 2010 19:34:03 +0530
changeset 9 3ad980fc23ca
parent 1 7818992cbf83
child 12 a93eebabfeb1
permissions -rw-r--r--
removed views.py from taskapp and created a package views. added 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)),

)