Installation
Install the package and add it to your Django settings.
pip install django-brickwork
Then add brickwork to INSTALLED_APPS and wire the theme context processor:
INSTALLED_APPS = [
...
"brickwork",
]
TEMPLATES[0]["OPTIONS"]["context_processors"] += [
"brickwork.context_processors.theme",
]
| Requirement | Minimum version |
|---|---|
| Django | 5.0 |
| Python | 3.11 |
| Tailwind | 4.0 (CSS-first) |