Django

Code

Changeset 5221

Show
Ignore:
Timestamp:
05/13/07 22:29:13 (1 year ago)
Author:
adrian
Message:

Fixed #4217 -- Added note to docs/databrowse.txt about import. Thanks, Thomas Güttler

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/databrowse.txt

    r5012 r5221  
    4545       some point. A good place for it is in your URLconf file (``urls.py``). 
    4646 
    47     3. Add the following line to your URLconf:: 
     47    3. Change your URLconf to import the ``databrowse`` module:: 
     48 
     49           from django.contrib import databrowse 
     50 
     51       ...and add the following line to your URLconf:: 
    4852 
    4953           (r'^databrowse/(.*)', databrowse.site.root),