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',
...
)