django-admin-data-views
Add custom data views to django admin panel.
What it is and what it does
Django Admin Data Views is an extension for Django's admin interface that lets you display data sources outside the ORM—such as API responses or file contents—in the same familiar table and detail views used for regular database models. It bridges the gap between Django's model-centric admin and the need to show external or computed data alongside your database records.
The package works by providing a base class and integration layer that mimics Django's admin conventions, so developers familiar with ModelAdmin can quickly add custom data views without building separate interfaces. It depends on Django itself, django-settings-holder for configuration, and typing-extensions for type hints, keeping the dependency footprint minimal.
Use it for:
- Display API data (e.g., third-party service metrics or logs) in the admin panel alongside database models.
- Show computed or aggregated data in admin views without storing it in the database.
- Integrate file-based data (CSV, JSON) into the admin interface for quick inspection and management.
- Build admin dashboards that combine model data with external sources in a unified interface.
- Create read-only admin views for data you cannot or should not persist in your database.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Adds custom data views to the Django admin panel, displaying non-model data from APIs or files in table and item views alongside regular models.
Yes. The package is actively maintained, has no known vulnerabilities, carries a permissive MIT license, and solves a real gap in Django's admin interface—displaying non-model data without building separate UI. Low install friction and modern Python/Django support make it a straightforward addition to any Django project that needs to surface external or computed data in the admin.
Install
django-admin-data-views on PyPI
pip
pip install django-admin-data-viewsuv
uv add django-admin-data-viewspoetry
poetry add django-admin-data-viewsInstalling django-admin-data-views
Before you install
Low install friction with a pure-Python wheel. Actively maintained as of 2026-08-10 with recent releases. Depends on Django, django-settings-holder, and typing-extensions—all standard, lightweight dependencies.
License in practice
MIT license is permissive and imposes no restrictions on use, modification, or distribution in proprietary or open-source projects.
Quickstart
pip install django-admin-data-views
from django_admin_data_views import AdminDataView
class MyDataView(AdminDataView):
title = "External Data"
# Define how to fetch and display your data
Requires Django 4.2, 5.0, or 5.1 and Python 3.10 or later.
Verify before relying
- Whether the package supports streaming or paginating large datasets from external sources.
- Performance characteristics when displaying data from slow or rate-limited APIs.
- Whether custom authentication or caching strategies are built in or require manual implementation.
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (<4,>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 3 — Django, django-settings-holder, typing-extensions |
| Maintenance | actively maintained — 628 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 137,780/month — #11,356 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: django_admin_data_views-0.4.3-py3-none-any.whl
Keywords: django, admin, panel, custom, views, data
Tags
More Dynamic Content packages
MarkupSafe provides a text object that escapes…
permissive · top 100 on PyPI
Jinja2Jinja2 is a templating engine that renders…
permissive · top 100 on PyPI
soupsieveSoupsieve is a CSS selector library designed to…
permissive · top 100 on PyPI
WerkzeugWerkzeug is a WSGI utility library providing…
permissive · top 1,000 on PyPI
FlaskFlask is a lightweight WSGI web application…
permissive · top 1,000 on PyPI
MakoMako compiles Python-embedded templates into…
permissive · top 1,000 on PyPI
django-adminplusAdds custom admin views to Django's admin…
permissive · top 5,000 on PyPI
dj-materialized-viewsManages PostgreSQL materialized views through a…
permissive · top 15,000 on PyPI
django-signal-webhooksAdds webhook support to Django models by…
permissive · top 15,000 on PyPI
django-admin-extra-buttonsAdds custom buttons, links, and views to Django…
permissive · top 15,000 on PyPI
django-data-browserProvides an interactive web interface for…
permissive · top 15,000 on PyPI
django-settings-holderProvides a settings container for Django…
permissive · top 15,000 on PyPI
django-admin-sortable2Adds drag-and-drop reordering of model…
permissive · top 5,000 on PyPI
django-grappelliDjango Grappelli replaces the default Django…
permissive · top 15,000 on PyPI
django-admin-autocomplete-filterAdds autocomplete-based filtering to Django…
copyleft · top 15,000 on PyPI
django-better-admin-arrayfieldProvides a list-based widget for Django's…
permissive · top 15,000 on PyPI