django-leaf renders both "static" and database-backed templates based on the URL path.
Install the package from pypi:
pip install django-leaf
Add "leaf" and "mptt" to your INSTALLED_APPS:
INSTALLED_APPS = ( ... 'leaf', 'mptt', )
Add leaf urls to the end of your urlpatterns:
url(r'^', include('leaf.urls')),