urls.py
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 09:47:29 +0530
changeset 19 46e07d429ea1
parent 18 718b7b0309f1
child 21 3efb40900b87
permissions -rwxr-xr-x
Added templates required for sending activation email

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 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)),
    url(r'localhost:8000', None, name="site"),
)