Registry /
web-framework / django-template-partials
Install & Compatibility
Where this runs
tested against v25.3 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 66.3MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 3.4s · import 0.000s · 67MB
65MB installed
● package 65MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
PartialTemplateTag
✓ from template_partials.templatetags import PartialTemplateTag
✗ from template_partials.templatetags import PartialTemplateTag
Add 'template_partials' to INSTALLED_APPS, then use {% load partials %} and {% partial %} / {% endpartial %} in templates.
# settings.py
INSTALLED_APPS = [
...
'template_partials',
]
# template.html (load the tag)
{% load partials %}
{% partial my_partial %}
<p>Hello, {{ name }}!</p>
{% endpartial %}
{% partial my_partial %}
<!-- rendered inline -->
Upgrade
Version history
25.3latest on PyPI · released Nov 14, 2025
Audit
Dependencies
djangorequiredRequires Django (any version, but partials work with Django 3.2+)