├── .coverage ├── .github └── workflows │ └── tests.yaml ├── .gitignore ├── AUTHORS ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── pyproject.toml ├── runtests.py ├── setup.py ├── template_analyzer ├── __init__.py ├── djangoanalyzer.py ├── models.py ├── templates │ └── placeholder_tests │ │ ├── base.html │ │ ├── cache_base.html │ │ ├── cache_level1.html │ │ ├── cache_level2.html │ │ ├── child.html │ │ ├── extends_custom_loader_level1.html │ │ ├── extends_custom_loader_level2.html │ │ ├── nested_super_level1.html │ │ ├── nested_super_level2.html │ │ ├── nested_super_level3.html │ │ ├── nested_super_level4.html │ │ ├── outside.html │ │ ├── outside_base.html │ │ ├── outside_nested.html │ │ ├── tag_exception.html │ │ ├── test_eleven.html │ │ ├── test_five.html │ │ ├── test_four.html │ │ ├── test_one.html │ │ ├── test_seven.html │ │ ├── test_six.html │ │ ├── test_three.html │ │ ├── test_two.html │ │ ├── variable_extends.html │ │ └── variable_extends_default.html ├── templatetags │ ├── __init__.py │ └── template_analyzer_test_tags.py └── tests │ ├── __init__.py │ ├── app_loader.py │ └── test_placeholder.py └── tox.ini /.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/.coverage -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/README.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/setup.py -------------------------------------------------------------------------------- /template_analyzer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/__init__.py -------------------------------------------------------------------------------- /template_analyzer/djangoanalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/djangoanalyzer.py -------------------------------------------------------------------------------- /template_analyzer/models.py: -------------------------------------------------------------------------------- 1 | # needed to run tests 2 | -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/base.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/cache_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/cache_base.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/cache_level1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/cache_level1.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/cache_level2.html: -------------------------------------------------------------------------------- 1 | {% extends "placeholder_tests/cache_level1.html" %} 2 | -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/child.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/child.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/extends_custom_loader_level1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/extends_custom_loader_level1.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/extends_custom_loader_level2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/extends_custom_loader_level2.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/nested_super_level1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/nested_super_level1.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/nested_super_level2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/nested_super_level2.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/nested_super_level3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/nested_super_level3.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/nested_super_level4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/nested_super_level4.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/outside.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/outside.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/outside_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/outside_base.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/outside_nested.html: -------------------------------------------------------------------------------- 1 | {% extends "placeholder_tests/outside.html" %} -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/tag_exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/tag_exception.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/test_eleven.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/test_eleven.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/test_five.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/test_five.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/test_four.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/test_four.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/test_one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/test_one.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/test_seven.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/test_seven.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/test_six.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/test_six.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/test_three.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/test_three.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/test_two.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/test_two.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/variable_extends.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/variable_extends.html -------------------------------------------------------------------------------- /template_analyzer/templates/placeholder_tests/variable_extends_default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templates/placeholder_tests/variable_extends_default.html -------------------------------------------------------------------------------- /template_analyzer/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template_analyzer/templatetags/template_analyzer_test_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/templatetags/template_analyzer_test_tags.py -------------------------------------------------------------------------------- /template_analyzer/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/tests/__init__.py -------------------------------------------------------------------------------- /template_analyzer/tests/app_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/tests/app_loader.py -------------------------------------------------------------------------------- /template_analyzer/tests/test_placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/template_analyzer/tests/test_placeholder.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoburu/django-template-analyzer/HEAD/tox.ini --------------------------------------------------------------------------------