Get all your project models on one single page with charts and whistles.
Unfortunately, I have no time to add new features. Please make PR if you need one:
That's it.
Django-admin is a great tool to control your project activity: new orders, comments, replies, users, feedback -- everything is here. The only struggle is to switch between all those pages constantly just to check them out for new entries.
With django-controlcenter you can have all of your models on one single page and build beautiful charts with Chartist.js. Actually they don't even have to be a django models, get your data from wherever you want: RDBMS, NOSQL, text file or even from an external web-page, it doesn't matter.
Install django-controlcenter:
pip install -U django-controlcenter
Create a dashboard file with unlimited number of widgets and dashboards:
from controlcenter import Dashboard, widgets
from project.app.models import Model
class ModelItemList(widgets.ItemList):
model = Model
list_display = ('pk', 'field')
class MyDashboard(Dashboard):
widgets = (
ModelItemList,
)
Update settings file:
INSTALLED_APPS = [
...
'controlcenter',
...
]
CONTROLCENTER_DASHBOARDS = (
('mydash', 'project.dashboards.MyDashboard'),
)
Plug in urls:
from django.urls import path
from django.contrib import admin
from controlcenter.views import controlcenter
urlpatterns = [
path('admin/dashboard/', controlcenter.urls),
path('admin/', admin.site.urls),
...
]
Open /admin/dashboard/mydash/
in browser.
Check out the docs for more complete examples.
Tested on py 3.5—3.10 and django 1—4.
This project uses Chartist.js, Masonry.js and Sortable.js.
chartist-plugin-pointlabels
temporary fixItemList
ItemList
header is now always displayed regardless sortabilityThanks to @minusf.
key_value_list.html
widget template syntax error.widget.chartist.point_labels -> point_lables
.Thanks to @minusf.
TimeSeriesChart
widget. Thanks to @pjdelport.ValueList
and KeyValueList
. Thanks to @tonysyu.CONTROLCENTER_DASHBOARDS
.
The old behaviour is supported too.ControlCenter
classdashboard.html
now extends admin/base_site.html
instead of admin/base.html
in order to display branding block. Thanks to @chadgh.jsonify
tag filter, thanks to @k8n.i
series color fix. Thanks to @uncleNight.