~ubuntu-branches/ubuntu/quantal/python-django/quantal

« back to all changes in this revision

Viewing changes to docs/ref/contrib/gis/tutorial.txt

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb
  • Date: 2010-05-24 22:44:32 UTC
  • mfrom: (1.1.11 upstream) (4.4.8 sid)
  • Revision ID: james.westby@ubuntu.com-20100524224432-lz0tq65rhy8cov3y
Tags: 1.2.1-1
New upstream bugfix release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
708
708
    admin.autodiscover()
709
709
 
710
710
    urlpatterns = patterns('',
711
 
                           (r'^admin/(.*)', include(admin.site.urls)),
712
 
                           )
 
711
        (r'^admin/', include(admin.site.urls)),
 
712
    )
713
713
 
714
714
Start up the Django development server::
715
715