crispy-bulma¶
Bulma template pack for django-crispy-forms
Documentation: https://crispy-bulma.readthedocs.io.
Requirements¶
Officially supported versions:
Django: 4.2, 5.0, 5.1, 5.2
Python 3.8, 3.9, 3.10, 3.11, 3.12, 3.13
django-crispy-forms 2.0, 2.1, 2.2, 2.3, 2.4
Bulma.css >= 0.9.4 (tested until 1.0.4)
Quickstart¶
Install this plugin using pip:
$ pip install crispy-bulma
You will need to update your project’s settings file to add crispy_forms
and crispy_bulma to your projects INSTALLED_APPS. Also set
bulma as and allowed template pack and as the default template pack
for your project:
INSTALLED_APPS = (
...
"crispy_forms",
"crispy_bulma",
...
)
CRISPY_ALLOWED_TEMPLATE_PACKS = ("bulma",)
CRISPY_TEMPLATE_PACK = "bulma"
Credits¶
This project is based on an archived crispy-forms-bulma fork by Discord
The original crispy-forms-bulma project is by Jure Hotujec
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
License¶
MIT license