Django

Code

Show
Ignore:
Timestamp:
03/09/08 14:40:31 (9 months ago)
Author:
adrian
Message:

Fixed #6740 -- Documented in docs/flatpage.txt that the flatpages app requires the sites framework. Thanks, mail@dirkmeister.de

Files:

Legend:

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

    r6674 r7208  
    2525To install the flatpages app, follow these steps: 
    2626 
     27    1. Install the `sites framework`_ by adding ``'django.contrib.sites'`` to 
     28       your INSTALLED_APPS_ setting, if it's not already in there. 
    2729    1. Add ``'django.contrib.flatpages'`` to your INSTALLED_APPS_ setting. 
    2830    2. Add ``'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware'`` 
     
    3032    3. Run the command ``manage.py syncdb``. 
    3133 
     34.. _sites framework: ../sites/ 
    3235.. _INSTALLED_APPS: ../settings/#installed-apps 
    3336.. _MIDDLEWARE_CLASSES: ../settings/#middleware-classes