USWDS components as Django Cotton templates.
Use the U.S. Web Design System in your Django projects with a clean, declarative component syntax.
git clone https://github.com/iversondiles/django-cotton-uswds.git
cd django-cotton-uswds
pip install -e .Then add both django_cotton and django_cotton_uswds to your INSTALLED_APPS:
INSTALLED_APPS = [
# ...
"django_cotton",
"django_cotton_uswds",
]Components follow the <c-component> naming convention:
<c-alert type="info" heading="Informative status">
This is an informative alert.
</c-alert>Attributes pass through to the underlying USWDS markup, so you can use the same options documented on the USWDS component pages.
This package provides markup only — no CSS or JavaScript is bundled. You need to add USWDS assets to your project separately.
See the USWDS getting started guide for instructions on compiling and including the USWDS stylesheet and scripts.
This project is in early development. Components are being added incrementally. See the USWDS components page for reference on what's planned.
The package includes a USWDS form renderer that automatically styles Django forms with USWDS markup — labels, hints, error messages, and all standard widget types.
from django import forms
from django_cotton_uswds.mixins import USWDSFormMixin
class ContactForm(USWDSFormMixin, forms.Form):
name = forms.CharField(label="Full name")
email = forms.EmailField()
message = forms.CharField(widget=forms.Textarea)# settings.py
FORM_RENDERER = "django_cotton_uswds.renderer.USWDSFormRenderer"USWDS-specific attributes can be passed through widget attrs:
class MyForm(USWDSFormMixin, forms.Form):
name = forms.CharField(
widget=forms.TextInput(attrs={"width": "md"}),
)
resume = forms.FileField(
widget=forms.ClearableFileInput(attrs={"accept": ".pdf,.doc"}),
)| Django widget | USWDS rendering |
|---|---|
TextInput, EmailInput, NumberInput, etc. |
usa-input text field |
Textarea |
usa-textarea |
Select |
usa-select dropdown |
RadioSelect |
Fieldset with usa-radio buttons |
CheckboxSelectMultiple |
Fieldset with usa-checkbox items |
CheckboxInput (boolean) |
Single usa-checkbox |
ClearableFileInput |
usa-file-input |
A demo project is included to showcase components. Requires just and uv.
# Install the package with demo dependencies
just install
# Run the development server at http://127.0.0.1:8000/
just demo
# Build a static site into demo_project/dist/
just build- Python 3.10+
- Django 4.2+
- django-cotton 1.2.1+
See UBIQUITOUS_LANGUAGE.md for a glossary of canonical domain terms used in this project.
MIT