Releases: cfpb/wagtail-inventory
Releases · cfpb/wagtail-inventory
3.0.1
3.0
What's Changed
- Update for Wagtail 6.2 universal listing reports by @willbarton in #84
This release drops support for Wagtail < 6.2.
Full Changelog: 2.6...3.0
2.6
2.5
2.4
2.3
2.2
2.1
2.0.0
- Convert inventory view to a Wagtail report #68
The Wagtail block inventory is moved from "Settings" to "Reports" with new filter options and Excel/CSV downloads.
This release adds a requirement of django-autocomplete-light, which can be pip-installed:
pip install django-autocomplete-light
And it requires dal
and dal_select2
to be added to INSTALLED_APPS
in your settings.py
file:
# in settings.py
INSTALLED_APPS = (
...
'dal',
'dal_select2',
'wagtailinventory',
...
)