pytask/urls.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Sun, 24 Jan 2010 20:07:51 +0530
branchmadhu
changeset 8 0e2c04439e31
parent 1 urls.py@7818992cbf83
permissions -rw-r--r--
Added setup.py file and moved urls.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')),

    # Uncomment the next line to enable the admin:
    (r'^admin/', include(admin.site.urls)),
)