v4.0.0
What's changed
Changed
- Renamed
tbxtemplate directory and crispy forms template pack totbxforms[#92]
Fixed
- Conditional fields not working properly when there are multiple elements inspecting the same driving field [#91]
Removed
- IE11 support [#91]
Full Changelog: v3.0.0...v4.0.0
Upgrade considerations
Template pack and path have been renamed from tbx is now tbxforms
You must update references from tbx to tbxforms. This change makes it clearer what template pack is used, and makes overriding templates easier.
Change this:
CRISPY_ALLOWED_TEMPLATE_PACKS = ["tbx"]
CRISPY_TEMPLATE_PACK = "tbx"
To:
CRISPY_ALLOWED_TEMPLATE_PACKS = ["tbxforms"]
CRISPY_TEMPLATE_PACK = "tbxforms"
If you have overridden any templates, you will need to rename your tbx directory to tbxforms.
Dropped javascript support for IE11
The conditional fields JS previously had a pollyfil for IE11, which has now been removed.