~kkubasik/django/aggregation-branch

« back to all changes in this revision

Viewing changes to examples/urls.py

  • Committer: adrian
  • Date: 2006-05-02 01:31:56 UTC
  • Revision ID: vcs-imports@canonical.com-20060502013156-2941fcd40d080649
MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompatible. Please read http://code.djangoproject.com/wiki/RemovingTheMagic for upgrade instructions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from django.conf.urls.defaults import *
 
2
 
 
3
urlpatterns = patterns('',
 
4
    (r'^$', 'examples.views.index'),
 
5
    (r'^hello/', include('examples.hello.urls')),
 
6
)