Django integration for Zooy UI framework with Carbon Design System widgets
Project description
django-zooy
Django form widgets for Carbon Design System and Zooy UI framework.
Installation
pip install django-zooy
# settings.py
INSTALLED_APPS = [
'django_zooy',
]
Quick Start
from django import forms
from django_zooy import CarbonFormMixin
from django_zooy.carbon import CarbonTextInput, CarbonEmailInput
class ContactForm(CarbonFormMixin, forms.Form):
name = forms.CharField(widget=CarbonTextInput())
email = forms.EmailField(widget=CarbonEmailInput())
The CarbonFormMixin automatically injects field labels, help text, validation states, and required attributes into Carbon widgets.
Widgets
Carbon Design System
from django_zooy.carbon import (
CarbonTextInput, # <cds-text-input>
CarbonEmailInput, # <cds-text-input type="email">
CarbonPasswordInput, # <cds-password-input>
CarbonURLInput, # <cds-text-input type="url">
CarbonTelInput, # <cds-text-input type="tel">
CarbonNumberInput, # <cds-text-input type="number">
CarbonSearchInput, # <cds-text-input type="search">
CarbonTextarea, # <cds-textarea>
)
Widget Configuration
Python snake_case attributes are automatically converted to Carbon's kebab-case:
CarbonTextInput(attrs={
'label': 'Username',
'helper_text': 'Enter your username',
'placeholder': 'johndoe',
'invalid': False,
'invalid_text': 'Username is required',
'size': 'md', # sm, md, lg
'enable_counter': True,
'max_count': 50,
})
Boolean attributes render without values:
required=True→requireddisabled=True→disabledinvalid=True→invalid
Form Mixins
CarbonFormMixin
Automatically configures Carbon widgets with form field metadata:
class MyForm(CarbonFormMixin, forms.ModelForm):
class Meta:
model = User
fields = ['username', 'email']
widgets = {
'username': CarbonTextInput(),
'email': CarbonEmailInput(),
}
Auto-injected attributes:
labelfromfield.labelrequiredfromfield.requiredhelper-textfromfield.help_textdisabledfromfield.disabledinvalidandinvalid-textfrom validation errors
Works with Form, ModelForm, and custom form classes. Only affects Carbon widgets.
ZooyFormMixin
Base mixin for Zooy UI integration. Use CarbonFormMixin for Carbon widgets.
Carbon Icons
Server-side SVG rendering of Carbon Design System icons. No JavaScript required.
Setup
# settings.py
CARBON_ICONS_PATH = BASE_DIR / 'carbon-icons'
python manage.py fetch_carbon_icons
Downloads 2,000+ icons from Carbon's CDN to CARBON_ICONS_PATH.
Usage
{% load carbon %}
{% carbon_icon "save" %}
{% carbon_icon "edit" 20 %}
{% carbon_icon "delete" 16 slot="icon" class="text-red-500" %}
Arguments:
name(required) - Icon name from Carbon icons librarysize(optional) - 16, 20, 24, or 32. Default: 16**attrs(optional) - HTML attributes (slot, class, data-*, etc.)
Missing icons render nothing and log: CARBON ICON MISSING: "icon-name" size=16 at /path/to/icon.svg
Management Command Options
# Download specific sizes only
python manage.py fetch_carbon_icons --sizes 16 20
# Use custom CDN
python manage.py fetch_carbon_icons --cdn https://cdn.example.com/@carbon/icons
# Pin to specific version
python manage.py fetch_carbon_icons --icon-version 11.0.0
# Force re-download
python manage.py fetch_carbon_icons --force
Add to deployment pipeline:
RUN python manage.py fetch_carbon_icons
API Reference
CarbonWidgetMixin
Base class for all Carbon widgets. Provides:
- Automatic snake_case → kebab-case attribute conversion
- Boolean attribute handling
- Default size (
md) - Size constants:
SIZE_SMALL,SIZE_MEDIUM,SIZE_LARGE
CarbonTextInput
Tooltip constants:
- Alignment:
TOOLTIP_ALIGN_START,TOOLTIP_ALIGN_CENTER,TOOLTIP_ALIGN_END - Direction:
TOOLTIP_DIR_TOP,TOOLTIP_DIR_RIGHT,TOOLTIP_DIR_BOTTOM,TOOLTIP_DIR_LEFT
Supported attributes:
- Standard:
label,placeholder,required,disabled,readonly - Validation:
invalid,invalid_text,warn,warn_text - Display:
size,hide_label,inline - Counter:
enable_counter,max_count - Tooltip:
tooltip_alignment,tooltip_direction
CarbonPasswordInput
Same as CarbonTextInput with show_password_visibility_toggle=True by default.
Additional attributes:
hide_password_label- Tooltip text for hide passwordshow_password_label- Tooltip text for show password
CarbonTextarea
Same attributes as CarbonTextInput plus:
rows- Number of visible text linescols- Visible width of the text control
Development
git clone https://github.com/trinity-telecomms/django-zooy
cd django-zooy
uv sync --all-extras --all-groups
pytest
ruff check .
Build and Publish
# Update version in pyproject.toml
uv sync --upgrade --all-extras --all-groups
pytest
rm -rf dist/ build/ *.egg-info/
uv build
uv publish
License
MIT License. See LICENCE for details.
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_zooy-0.1.2.tar.gz.
File metadata
- Download URL: django_zooy-0.1.2.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
856a9e12b0b02bde40e7ca867a553ec223612414628ed4aa6f29d6340dd6cdc8
|
|
| MD5 |
74066c66af2349e1140eef30224231e2
|
|
| BLAKE2b-256 |
8377ff25ce56be3328e1bf2f7fa66ea14fae9de77ca50dc160b7406d31692b8e
|
File details
Details for the file django_zooy-0.1.2-py3-none-any.whl.
File metadata
- Download URL: django_zooy-0.1.2-py3-none-any.whl
- Upload date:
- Size: 18.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
087c4908354723dc0e7c3054c142f4b4133dcd54ae109b73b869967e0342b3d6
|
|
| MD5 |
0db6b9de4ae2bdd13cd8bbb4b8a8dd56
|
|
| BLAKE2b-256 |
746e83545129f09393cf8957eee464ab3ccd9779b0aacb5cf09e41753cd34dbd
|