Skip to main content

Simple Django Admin replacement for Leonardo CMS, built on django-admin-tools and django-jet.

Project description

Admin dashboard for Leonardo CMS built on django-jet. Support custom menu and easy extending with auto registering of new widgets.

Installation

pip install leonardo-admin-dashboard

Configuration

This module requires dashboard_menu item in LEONARDO_CONF_SPEC:

LEONARDO_CONF_SPEC = {
    'dashboard_menu': []
}

Optionaly you can add dashboard widgets:

LEONARDO_CONF_SPEC = {
    'dashboard_widgets_available': [],
    'dashboard_widgets': []
}

Usage

Add your menu items into dashboard_menu array as string path to your menu:

dashboard_menu = ['leonardo_store.menu.store_menu']

For menu items use modules from leonardo_admin_dashboard.modules:

from leonardo_admin_dashboard import modules

store_menu = modules.SubMenuLinkList(
    _('Store'),
    children=[{
                'title': 'Catalogue',
                'url': reverse('catalogue'),
                'external': False,
                'icon': 'icon-book'
                }],
)

For more examples see menu.py or visit django-admin-tools and django-jet documentations.

Read More

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

leonardo-admin-dashboard-0.0.1.dev13.tar.gz (46.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page