source: src/django_tutorial/urls.py@ 9171

Last change on this file since 9171 was 9009, checked in by dennisw, 14 years ago

Stuk tutorial erbij, prototype model gemaakt.

File size: 586 bytes
RevLine 
[9007]1from django.conf.urls.defaults import patterns, include, url
2
3# Uncomment the next two lines to enable the admin:
[9009]4from django.contrib import admin
5admin.autodiscover()
[9007]6
7urlpatterns = patterns('',
8 # Examples:
9 # url(r'^$', 'django_tutorial.views.home', name='home'),
10 # url(r'^django_tutorial/', include('django_tutorial.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:
[9009]16 url(r'^admin/', include(admin.site.urls)),
[9007]17)
Note: See TracBrowser for help on using the repository browser.