wagtail-nest / wagtail-modeladmin

Add any model in your project to the Wagtail admin. Formerly wagtail.contrib.modeladmin.
Other
21 stars 8 forks source link

Enhancement: Ability to register ModelAdmin in Reports section #42

Open Swojak-A opened 1 month ago

Swojak-A commented 1 month ago

I've noticed that you can register ModelAdmin MenuItem to Settings menu via add_to_settings_menu declaration:

class EmailAdmin(ModelAdmin):
    model = Email
    menu_label = _("Emails")
    add_to_settings_menu = True
    ...

However you can not do the same to add the ModelAdmin to Reports menu.