urls.py
author nishanth
Thu, 04 Feb 2010 19:42:35 +0530
changeset 10 bf0cbea1bd12
parent 1 7818992cbf83
child 12 a93eebabfeb1
permissions -rw-r--r--
removed views.py and made it a package. added auth_profile 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)),

)