Django

Code

Changeset 7210

Show
Ignore:
Timestamp:
03/09/08 16:59:09 (6 months ago)
Author:
adrian
Message:

Fixed #6742 -- Fixed numbering error in docs/flatpages.txt

Files:

Legend:

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

    r7208 r7210  
    2727    1. Install the `sites framework`_ by adding ``'django.contrib.sites'`` to 
    2828       your INSTALLED_APPS_ setting, if it's not already in there. 
    29     1. Add ``'django.contrib.flatpages'`` to your INSTALLED_APPS_ setting. 
    30     2. Add ``'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware'`` 
     29    2. Add ``'django.contrib.flatpages'`` to your INSTALLED_APPS_ setting. 
     30    3. Add ``'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware'`` 
    3131       to your MIDDLEWARE_CLASSES_ setting. 
    32     3. Run the command ``manage.py syncdb``. 
     32    4. Run the command ``manage.py syncdb``. 
    3333 
    3434.. _sites framework: ../sites/