Metadata-Version: 2.0
Name: django-leaf
Version: 2.1.1
Summary: Render and serve django templates based on URL.
Home-page: https://github.com/gsmke/django-leaf
Author: Ryan Senkbeil
Author-email: ryan.senkbeil@gsdesign.com
License: BSD
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Dist: django-mptt (>=0.7.2,<1.8)
Requires-Dist: six

django-leaf
===========

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

Quick Start
-----------

1. Install the package from pypi:

    .. code-block:: bash

        pip install django-leaf

2. Add "leaf" and "mptt" to your INSTALLED_APPS:

    .. code-block:: python

        INSTALLED_APPS = (
            ...
            'leaf',
            'mptt',
        )

3. Add leaf urls to *the end* of your urlpatterns:

    .. code-block:: python

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


