root/urls.py

Revision 1, 0.5 kB (checked in by georgescarlett, 11 months ago)

initial import

Line 
1from django.conf.urls.defaults import patterns, include, url
2
3# Uncomment the next two lines to enable the admin:
4from django.contrib import admin
5admin.autodiscover()
6
7urlpatterns = patterns('',
8    # Examples:
9    # url(r'^$', 'cricket.views.home', name='home'),
10    # url(r'^cricket/', include('cricket.foo.urls')),
11
12    # Uncomment the admin/doc line below to enable admin documentation:
13    url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
14
15    # Uncomment the next line to enable the admin:
16    url(r'^admin/', include(admin.site.urls)),
17)
Note: See TracBrowser for help on using the browser.