Wagtail Reports allows to create custom reports. The reports are displayed on the admin dashboard. Wagtail Reports gives you and your team useful insight on the day-to-day content and content changes.
Pip install:
pip install git+ssh://[email protected]/fourdigits/wagtailreports.git
Add wagtailreports to your settings:
INSTALLED_APPS = [
...
'wagtailreports',
]
Include the wagtailreports_urls in your urls:
from wagtailreports import urls as wagtailreports_urls
urlpatterns = [
...
url(r'^reports/', include(wagtailreports_urls)),
]