Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 852 Bytes

README.rst

File metadata and controls

43 lines (26 loc) · 852 Bytes

Wagtail Reports

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.

Install

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

]
Wagtail Reports