Template Explorer is a Django app to aid getting a handle on your project's templates.
$ pip install git+https://github.com/macro1/django-template-explorer.gitAdd template_explorer to your INSTALLED_APPS:
INSTALLED_APPS = [
# ...
'template_explorer',
]View templates available in your project:
$ python manage.py template_tree