├── .editorconfig ├── .git-blame-ignore-revs ├── .github ├── dependabot.yml └── workflows │ └── package-tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── Migration.md ├── README.md ├── justfile ├── pyproject.toml ├── src └── template_partials │ ├── __init__.py │ ├── apps.py │ ├── loader.py │ └── templatetags │ ├── __init__.py │ └── partials.py ├── tests ├── __init__.py ├── settings.py ├── templates │ ├── base.html │ ├── child.html │ ├── debug.html │ ├── example.html │ ├── included.html │ └── parent.html └── tests.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | 6670dee27f306929030a53dd47bd8e9331e53f88 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/package-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/.github/workflows/package-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.pyc 3 | 4 | .idea 5 | .tox 6 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/LICENSE -------------------------------------------------------------------------------- /Migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/Migration.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/README.md -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/justfile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/template_partials/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/src/template_partials/__init__.py -------------------------------------------------------------------------------- /src/template_partials/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/src/template_partials/apps.py -------------------------------------------------------------------------------- /src/template_partials/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/src/template_partials/loader.py -------------------------------------------------------------------------------- /src/template_partials/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/template_partials/templatetags/partials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/src/template_partials/templatetags/partials.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/tests/templates/base.html -------------------------------------------------------------------------------- /tests/templates/child.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/tests/templates/child.html -------------------------------------------------------------------------------- /tests/templates/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/tests/templates/debug.html -------------------------------------------------------------------------------- /tests/templates/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/tests/templates/example.html -------------------------------------------------------------------------------- /tests/templates/included.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/tests/templates/included.html -------------------------------------------------------------------------------- /tests/templates/parent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/tests/templates/parent.html -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/tests/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-template-partials/HEAD/tox.ini --------------------------------------------------------------------------------