django-bootstrap5
django-bootstrap5 copied to clipboard
Bootstrap 5 for Django
Since #60, pagination is wrapped in a `` element. This is a good thing because screen reader users can find the pagination quickly via a landmark. But it can also...
Bootstrap 5 allows for input-groups of several form fields, but django-bootstrap5 wraps each field in a div, which prevents the style classes to be applied correctly: ```html {% bootstrap_field form.field_a...
Hello team, first of all I would like to thank you for a great product. I've got a custom widget for displaying stored credit cards in the store: ```python from...
Bumps [myst-parser](https://github.com/executablebooks/MyST-Parser) from 2.0.0 to 3.0.1. Release notes Sourced from myst-parser's releases. v3.0.1 What's Changed 🐛 FIX empty value for final directive option by @chrisjsewell in executablebooks/MyST-Parser#924 🐛 FIX: allow...
I'm trying to clone the `zostera/django-bootstrap5` repository on GitHub. While the following command worked successfully: ``` git clone https://github.com/zostera/django-bootstrap5.git ``` This attempt using the `git` protocol failed: ``` git clone...
Because FieldRenderer.is_form_control_widget does not include the Select widget, it is not considered eligible for addons (before or after)
`BaseRenderer.get_kwargs()` is missing out the `server_side_validation` arg, so this setting is not passed from bootstrap_form tag to the field renderers.
Match current behavior of Django's `RadioSelect` widget which allow to customize individual options' `attrs` (including `disabled` in a `ChoiceField`). The `create_option` hook is documented in Django https://docs.djangoproject.com/en/5.0/ref/forms/fields/ to allow the...
Bumps [setuptools](https://github.com/pypa/setuptools) from 69.5.1 to 70.2.0. Changelog Sourced from setuptools's changelog. v70.2.0 Features Updated distutils including significant changes to support Cygwin and mingw compilers. (#4444) Bugfixes Fix distribution name normalisation...
Pretty much the title. I want to have a custom label, but bootstrap_field has no option for custom label text, and bootstrap_label doesn't get linked with bootstrap_field to achieve a...