You'd need to create your own reporting app, with view and templates for creating your reports (plus an entry in urls.py of course)
# -*- coding: utf-8 -*-
"""
Django Suit Configuration Module
"""
from django.apps import AppConfig
from django import get_version
from suit.apps import DjangoSuitConfig
from suit.menu import ParentItem, ChildItem
class SuitConfig(DjangoSuitConfig):
layout = 'horizontal' # or 'vertical'
name = 'suit'
django_version = get_version()
menu = (
ParentItem('Client', children=[
ChildItem(model='myapp.model1'),
ChildItem(model='myapp.model2),
], icon='fa fa-example-o'),
ParentItem('Reports', children=[
ChildItem(url='/reports/', label="Reports"),
], icon='fa fa-star'),
)
PS The license fee is only required if you are selling your software; not open source software available to the public.