Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 525 Bytes

DESCRIPTION.rst

File metadata and controls

29 lines (18 loc) · 525 Bytes

django-leaf

django-leaf renders both "static" and database-backed templates based on the URL path.

Quick Start

  1. Install the package from pypi:

    pip install django-leaf
  2. Add "leaf" and "mptt" to your INSTALLED_APPS:

    INSTALLED_APPS = (
        ...
        'leaf',
        'mptt',
    )
  3. Add leaf urls to the end of your urlpatterns:

    url(r'^', include('leaf.urls')),