urls.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Sun, 24 Jan 2010 19:20:33 +0530
changeset 6 f87d8ee2b9ca
parent 1 7818992cbf83
child 9 3ad980fc23ca
permissions -rw-r--r--
Reorganized the directory structure. Removed unwanted .pyc files.

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