A Django package that allows adding custom data views (e.g., tables and charts) to the Django admin panel. Current version: 0.4.3. Released monthly.
pip install django-admin-data-viewsNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Define a custom data view on a Django admin model. Requires Django admin and Django models.
Use from django_admin_data_views import ...
class MyAdmin(AdminDataViewMixin, admin.ModelAdmin): ...
Use lambda qs: qs.aggregate(...) instead of lambda: MyModel.objects.aggregate(...)
No dependency data recorded yet.