Install#

Install package in your environment :

pip install emencia-django-staticpages

For development usage see Install for development.

Configuration#

Add it to your installed Django apps in settings :

INSTALLED_APPS = (
    ...
    "staticpages.apps.staticpagesConfig",
)

Then load default application settings in your settings file:

from staticpages.settings import *

See Usage to learn how to define pages and mount their urls.