Skip to content

2.0.0

Compare
Choose a tag to compare
@willbarton willbarton released this 09 Mar 13:28
· 31 commits to main since this release
30d6fcf
  • 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',
    ...
)