Django Sandwich Tags
A django template tag that simplifies nested templates.
Version: 0.2.3
Overview
The sandwich template tag is a Django template tag that allows for easy composition of templates by wrapping a child template inside a parent template. This is particularly useful when building reusable UI components where a consistent layout needs to be enforced while allowing for dynamic content injection. It complements Django's built-in template inheritance by enabling support for nestable, reusable templates and components, rather than replacing it.
Installation
To use the sandwich template tag in your Django project, install the package and add it to your Django app's template tag modules.
-
Install the
sandwichpackage from PyPI$ pip install django-sandwich-tag
-
Add
'sandwich_tag'toINSTALLED_APPS:INSTALLED_APPS = [ ..., "sandwich_tag", ..., ]
-
Load the template tag in your Django template:
{% load sandwich %}
Usage
Basic Example
The sandwich template tag is used to wrap a block of content inside a parent template. The child content will be injected into the parent template at the placeholder {{ sandwich_fixings }}.
Example Parent Template (card_component.html):
<div class="card">
<div class="card-header">
<h2>{{ title }}</h2>
</div>
<div class="card-body">
{{ sandwich_fixings }}
</div>
</div>
Example Usage in Another Template:
{% sandwich "card_component.html" title="Welcome" %}
<p>This content will be wrapped inside a card component.</p>
{% endsandwich %}
Passing Additional Context
Additional key-value pairs can be passed to the sandwich tag, which will be available in the parent template:
{% sandwich "card_component.html" title="User Info" theme="dark" %}
<p>This content inherits the "theme" variable.</p>
{% endsandwich %}
Using a Template Object Instead of a String
You can also pass a Template object instead of a template filename:
{% sandwich some_template_object title="Dynamic Title" %}
<p>Using a template object dynamically.</p>
{% endsandwich %}
How It Works
- The
sandwichtag takes a requiredtemplateargument, which specifies the parent template. - The child block content is rendered separately and passed as
sandwich_fixings. - The parent template is rendered with any additional key-value arguments provided.
Complements Django's Template Inheritance
Django's template inheritance system is great for structuring large applications, but it lacks a built-in way to create deeply nestable, reusable templates or UI components. sandwich fills this gap by allowing content blocks to be dynamically wrapped in different parent templates while maintaining flexibility in context passing. This makes it an excellent tool for building modular front-end structures in Django applications.
Error Handling
- If the
templateargument is missing, aTemplateSyntaxErroris raised. - If
templateis provided both as a positional and keyword argument, an error is raised. - If
templateis not a string or aTemplateobject, an error is raised.
Enjoy building templates with sandwich! 🥪
License
This package is released under the MIT License.
Get Me Some of That
Acknowledgments
This project would be impossible to maintain without the help of our generous contributors
Technology Colophon
Without django and the django dev team, the universe would have fewer rainbows and ponies.
This package was originally created with cookiecutter
and the cookiecutter-powder-pypackage project template.
For Developers
Initialise the development environment using the invoke task
inv tox.venv
Or create it with tox directly
tox d -e dev .venv
Tests
pytest
or
tox r
or run tox environments in parallel using
tox p
Code Style / Linting
$ isort
$ black
$ flake8
Versioning
-
$ bumpver show
Release files for django-sandwich-tag 0.2.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django_sandwich_tag-0.2.3.tar.gz | 11.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| django_sandwich_tag-0.2.3-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 20.7 kB
Release files / django_sandwich_tag-0.2.3.tar.gz
| Download URL | django_sandwich_tag-0.2.3.tar.gz |
|---|---|
| Size | 11.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c22ecd97d9e64ae1e08f8756982ecc16c35aabaca9d1535ab589b4a880ccc467
|
|
BLAKE2b-256 checksum How to use checksums |
189c70eda2213a9e1a4f9f2e901c016fd937e761350794baf4754109dc99d3f2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on May 28, 2026.
Transparency logRelease files / django_sandwich_tag-0.2.3-py3-none-any.whl
| Download URL | django_sandwich_tag-0.2.3-py3-none-any.whl |
|---|---|
| Size | 9.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
0686351deb4485d84a5aa1b6660cef22dab32856c195ec61d0768e3990bd27c8
|
|
BLAKE2b-256 checksum How to use checksums |
4577b489a9f799d1538fa7aa07209c8153b8b2c9310dd8a2e908a657ed18a5c1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on May 28, 2026.
Transparency log