--- id: django-admin-data-views version: "0.4.3" license: MIT license_treatment: permissive maintenance: active --- # django-admin-data-views — Add custom data views to django admin panel. License: permissive · Maintenance: active · Downloads: 137.8K/mo ## 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 above — 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 pip install django-admin-data-views uv add django-admin-data-views poetry add django-admin-data-views ## Installing 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_current - Install friction: low - Maintenance: active - Downloads: 137.8K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags django admin custom views, non-model data django admin, api data django admin panel, django admin data display, custom admin views django, django admin external data, admin panel data integration, django-admin, data-integration [View on SkillFed](https://skillfed.io/packages/django-admin-data-views) · [View on PyPI](https://pypi.org/project/django-admin-data-views/)